diff --git a/muranoclient/common/utils.py b/muranoclient/common/utils.py index 63cc00cc..0af5f7a7 100644 --- a/muranoclient/common/utils.py +++ b/muranoclient/common/utils.py @@ -56,7 +56,7 @@ LOG = logging.getLogger(__name__) # Decorator for cli-args def arg(*args, **kwargs): def _decorator(func): - # Because of the sematics of decorator composition if we just append + # Because of the semantics of decorator composition if we just append # to the options list positional options will appear to be backwards. func.__dict__.setdefault('arguments', []).insert(0, (args, kwargs)) return func diff --git a/muranoclient/tests/functional/cli/utils.py b/muranoclient/tests/functional/cli/utils.py index 711735c7..b111d3d4 100644 --- a/muranoclient/tests/functional/cli/utils.py +++ b/muranoclient/tests/functional/cli/utils.py @@ -31,7 +31,7 @@ def compose_package(app_name, manifest, package_dir, Composes package `app_name` with `manifest` file as a template for the manifest and files from `package_dir`. Includes `require` section if any in the manifest file. - Puts the resulting .zip file into `acrhive_dir` if present or in the + Puts the resulting .zip file into `archive_dir` if present or in the `package_dir`. """ with open(manifest, 'w') as f: diff --git a/muranoclient/tests/unit/test_base.py b/muranoclient/tests/unit/test_base.py index e438c622..87ccd742 100644 --- a/muranoclient/tests/unit/test_base.py +++ b/muranoclient/tests/unit/test_base.py @@ -34,7 +34,7 @@ class BaseTest(testtools.TestCase): self.assertEqual(r1, r2) def test_two_resources_with_diff_type_are_not_equal(self): - # Two resoruces of different types: never equal + # Two resources of different types: never equal r1 = base.Resource(None, {'id': 1}) r2 = packages.Package(None, {'id': 1}) self.assertNotEqual(r1, r2)