Merge "Fix a typo in 'attach_volume' docstring"
diff --git a/tempest/api/volume/base.py b/tempest/api/volume/base.py
index 8a861a1..a4ed7a5 100644
--- a/tempest/api/volume/base.py
+++ b/tempest/api/volume/base.py
@@ -177,7 +177,7 @@
         client.wait_for_resource_deletion(snapshot_id)
 
     def attach_volume(self, server_id, volume_id):
-        """Attachs a volume to a server"""
+        """Attach a volume to a server"""
         self.servers_client.attach_volume(
             server_id, volumeId=volume_id,
             device='/dev/%s' % CONF.compute.volume_device_name)