From d7b9ee35569482be69918ba8ed448688568a7def Mon Sep 17 00:00:00 2001 From: Joe Gordon Date: Wed, 9 Nov 2011 13:01:35 -0800 Subject: More spelling fixes inside of nova Change-Id: I79daf7519c99cc363ac7175c85912298f273da8a --- nova/scheduler/api.py | 2 +- nova/scheduler/driver.py | 4 ++-- nova/scheduler/manager.py | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) (limited to 'nova/scheduler') diff --git a/nova/scheduler/api.py b/nova/scheduler/api.py index 41cdb80a3..dae5b1d8f 100644 --- a/nova/scheduler/api.py +++ b/nova/scheduler/api.py @@ -60,7 +60,7 @@ def get_host_list(context): def get_zone_list(context): - """Return a list of zones assoicated with this zone.""" + """Return a list of zones associated with this zone.""" items = _call_scheduler('get_zone_list', context) for item in items: item['api_url'] = item['api_url'].replace('\\/', '/') diff --git a/nova/scheduler/driver.py b/nova/scheduler/driver.py index b276b11df..5041c3346 100644 --- a/nova/scheduler/driver.py +++ b/nova/scheduler/driver.py @@ -36,7 +36,7 @@ from nova.api.ec2 import ec2utils FLAGS = flags.FLAGS LOG = logging.getLogger('nova.scheduler.driver') flags.DEFINE_integer('service_down_time', 60, - 'maximum time since last checkin for up service') + 'maximum time since last check-in for up service') flags.DECLARE('instances_path', 'nova.compute.manager') @@ -116,7 +116,7 @@ def encode_instance(instance, local=True): class Scheduler(object): - """The base class that all Scheduler clases should inherit from.""" + """The base class that all Scheduler classes should inherit from.""" def __init__(self): self.zone_manager = None diff --git a/nova/scheduler/manager.py b/nova/scheduler/manager.py index f5a268adb..0f973341e 100644 --- a/nova/scheduler/manager.py +++ b/nova/scheduler/manager.py @@ -66,7 +66,7 @@ class SchedulerManager(manager.Manager): return self.zone_manager.get_zone_list() def get_zone_capabilities(self, context=None): - """Get the normalized set of capabilites for this zone.""" + """Get the normalized set of capabilities for this zone.""" return self.zone_manager.get_zone_capabilities(context) def update_service_capabilities(self, context=None, service_name=None, -- cgit