From 02a954afef0b0ed0f0d20125c3dc1e6287790c8e Mon Sep 17 00:00:00 2001 From: Joe Gordon Date: Thu, 16 Aug 2012 15:07:19 -0500 Subject: Fix spelling typos Fixes for: * nova/*py * nova/scheduler/ * nova/compute/*py * nova/api/ec2/ Change-Id: I7bec89b3551eda84d596e55eeba9ccb9d944a5cb --- nova/api/ec2/ec2utils.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'nova/api') diff --git a/nova/api/ec2/ec2utils.py b/nova/api/ec2/ec2utils.py index e1ea9c6d8..4a7e574ad 100644 --- a/nova/api/ec2/ec2utils.py +++ b/nova/api/ec2/ec2utils.py @@ -138,7 +138,7 @@ def id_to_ec2_inst_id(instance_id): def ec2_inst_id_to_uuid(context, ec2_id): - """"Convert an instance id to uuid.""" + """"Convert an instance id to uuid.""" int_id = ec2_id_to_id(ec2_id) return get_instance_uuid_from_int_id(context, int_id) @@ -168,7 +168,7 @@ def id_to_ec2_vol_id(volume_id): def ec2_vol_id_to_uuid(ec2_id): - """Get the cooresponding UUID for the given ec2-id.""" + """Get the corresponding UUID for the given ec2-id.""" ctxt = context.get_admin_context() # NOTE(jgriffith) first strip prefix to get just the numeric @@ -199,7 +199,7 @@ def get_volume_uuid_from_int_id(context, int_id): def ec2_snap_id_to_uuid(ec2_id): - """Get the cooresponding UUID for the given ec2-id.""" + """Get the corresponding UUID for the given ec2-id.""" ctxt = context.get_admin_context() # NOTE(jgriffith) first strip prefix to get just the numeric -- cgit