]> review.fuel-infra Code Review - openstack-build/cinder-build.git/commitdiff
Fixes some typos in cinder
authorChang Bo Guo <guochbo@cn.ibm.com>
Tue, 24 Sep 2013 09:05:35 +0000 (02:05 -0700)
committerChang Bo Guo <guochbo@cn.ibm.com>
Tue, 24 Sep 2013 09:05:35 +0000 (02:05 -0700)
Just some typos

Change-Id: Ic0d99d2ec2152145e0c58b8792f630cacdb7ac87

cinder/api/contrib/services.py
cinder/backup/drivers/ceph.py
cinder/brick/initiator/connector.py
cinder/brick/initiator/linuxfc.py

index b8b9bc9bee87ca4114b620e1b4dd5ab9265a6771..bb4c0e37792f5e7a2c1e48ef70bbbd811e95ab3b 100644 (file)
@@ -54,7 +54,7 @@ class ServicesUpdateTemplate(xmlutil.TemplateBuilder):
         # TODO(uni): template elements of 'host', 'service' and 'disabled'
         # should be deprecated to make ServicesUpdateTemplate consistent
         # with ServicesIndexTemplate. Still keeping it here for API
-        # compability sake.
+        # compatibility sake.
         root = xmlutil.TemplateElement('host')
         root.set('host')
         root.set('service')
@@ -128,7 +128,7 @@ class ServiceController(object):
             raise webob.exc.HTTPBadRequest()
 
         # NOTE(uni): deprecating service request key, binary takes precedence
-        # Still keeping service key here for API compability sake.
+        # Still keeping service key here for API compatibility sake.
         service = body.get('service', '')
         binary = body.get('binary', '')
         binary_key = binary or service
index 8c95a6b85db5e3669918bec1370981946d44b181..8b8552d6c8f9e53d871f6c4d827a9a1f93e69c3c 100644 (file)
@@ -704,7 +704,7 @@ class CephBackupDriver(BackupDriver):
     def _get_volume_size_gb(self, volume):
         """Return the size in gigabytes of the given volume.
 
-        Raises exception.InvalidParameterValue if voluem size is 0.
+        Raises exception.InvalidParameterValue if volume size is 0.
         """
         if int(volume['size']) == 0:
             errmsg = _("need non-zero volume size")
index ae78c24a965d21642d6ca2e024689f54c72bf442..646bb0780ad1f207b83eb39fbb97677790ada82a 100644 (file)
@@ -245,7 +245,7 @@ class ISCSIConnector(InitiatorConnector):
         """Detach the volume from instance_name.
 
         connection_properties for iSCSI must include:
-        target_portal - ip and optional port
+        target_portal - IP and optional port
         target_iqn - iSCSI Qualified Name
         target_lun - LUN id of the volume
         """
index fd53dd25984eaff9b601d4fc377b291211454a4b..360178967036508e603a606a58a9e2f59029a9e4 100644 (file)
@@ -88,7 +88,7 @@ class LinuxFibreChannel(linuxscsi.LinuxSCSI):
     def get_fc_hbas_info(self):
         """Get Fibre Channel WWNs and device paths from the system, if any."""
 
-        # Note(walter-boring) modern linux kernels contain the FC HBA's in /sys
+        # Note(walter-boring) modern Linux kernels contain the FC HBA's in /sys
         # and are obtainable via the systool app
         hbas = self.get_fc_hbas()
         if not hbas:
@@ -109,7 +109,7 @@ class LinuxFibreChannel(linuxscsi.LinuxSCSI):
     def get_fc_wwpns(self):
         """Get Fibre Channel WWPNs from the system, if any."""
 
-        # Note(walter-boring) modern linux kernels contain the FC HBA's in /sys
+        # Note(walter-boring) modern Linux kernels contain the FC HBA's in /sys
         # and are obtainable via the systool app
         hbas = self.get_fc_hbas()
 
@@ -125,7 +125,7 @@ class LinuxFibreChannel(linuxscsi.LinuxSCSI):
     def get_fc_wwnns(self):
         """Get Fibre Channel WWNNs from the system, if any."""
 
-        # Note(walter-boring) modern linux kernels contain the FC HBA's in /sys
+        # Note(walter-boring) modern Linux kernels contain the FC HBA's in /sys
         # and are obtainable via the systool app
         hbas = self.get_fc_hbas()
         if not hbas: