diff --git a/doc/source/admin/index.rst b/doc/source/admin/index.rst index b0b99c5c86..44671aad50 100644 --- a/doc/source/admin/index.rst +++ b/doc/source/admin/index.rst @@ -1,5 +1,5 @@ -Adminstrator's Guide -==================== +Administrator's Guide +===================== Installation & Operations ------------------------- diff --git a/magnum/tests/functional/common/models.py b/magnum/tests/functional/common/models.py index 2cf000f0d6..81706b4e63 100644 --- a/magnum/tests/functional/common/models.py +++ b/magnum/tests/functional/common/models.py @@ -43,7 +43,7 @@ class BaseModel(object): class EntityModel(BaseModel): - """Superclass resposible from converting dict to instance of model""" + """Superclass responsible from converting dict to instance of model""" @classmethod def from_dict(cls, data): @@ -55,7 +55,7 @@ class EntityModel(BaseModel): class CollectionModel(BaseModel): - """Superclass resposible from converting dict to list of models""" + """Superclass responsible from converting dict to list of models""" @classmethod def from_dict(cls, data): diff --git a/magnum/tests/unit/conductor/handlers/test_cluster_conductor.py b/magnum/tests/unit/conductor/handlers/test_cluster_conductor.py index 251af785cc..2ece35cd9c 100644 --- a/magnum/tests/unit/conductor/handlers/test_cluster_conductor.py +++ b/magnum/tests/unit/conductor/handlers/test_cluster_conductor.py @@ -199,7 +199,7 @@ class TestHandler(db_base.DbTestCase): # again, this so bad because we have already called it in setUp # since other test case will share the codes in setUp() # But in self.handler.cluster_create, we update cluster.uuid and - # cluster.stack_id so cluster.create will create a new recored with + # cluster.stack_id so cluster.create will create a new record with # clustermodel_id None, this is bad because we load clusterModel # object in cluster object by clustermodel_id. Here update # self.cluster.clustermodel_id so cluster.obj_get_changes will get