summaryrefslogtreecommitdiff
path: root/openstackclient/common
diff options
context:
space:
mode:
authorZuul <zuul@review.opendev.org>2022-05-16 09:36:14 +0000
committerGerrit Code Review <review@openstack.org>2022-05-16 09:36:14 +0000
commitccd877dd405191002f0f1b0e7ed414671e8a8e64 (patch)
tree768997c3c598e337c1b05d72b13c883e865611bc /openstackclient/common
parent4b97a8518146f1427090801e8535251545617de2 (diff)
parent43639e1118a757fd1a00d9ea999db43133c40763 (diff)
downloadpython-openstackclient-ccd877dd405191002f0f1b0e7ed414671e8a8e64.tar.gz
Merge "Fix typos"
Diffstat (limited to 'openstackclient/common')
-rw-r--r--openstackclient/common/progressbar.py2
-rw-r--r--openstackclient/common/quota.py4
2 files changed, 3 insertions, 3 deletions
diff --git a/openstackclient/common/progressbar.py b/openstackclient/common/progressbar.py
index ef767a9c..7678aceb 100644
--- a/openstackclient/common/progressbar.py
+++ b/openstackclient/common/progressbar.py
@@ -17,7 +17,7 @@ import sys
class _ProgressBarBase(object):
- """A progress bar provider for a wrapped obect.
+ """A progress bar provider for a wrapped object.
Base abstract class used by specific class wrapper to show
a progress bar when the wrapped object are consumed.
diff --git a/openstackclient/common/quota.py b/openstackclient/common/quota.py
index e096f186..44482367 100644
--- a/openstackclient/common/quota.py
+++ b/openstackclient/common/quota.py
@@ -205,7 +205,7 @@ class BaseQuota(object):
class ListQuota(command.Lister, BaseQuota):
_description = _(
"List quotas for all projects with non-default quota values or "
- "list detailed quota informations for requested project")
+ "list detailed quota information for requested project")
def _get_detailed_quotas(self, parsed_args):
columns = (
@@ -230,7 +230,7 @@ class ListQuota(command.Lister, BaseQuota):
result = []
for resource, values in quotas.items():
# NOTE(slaweq): there is no detailed quotas info for some resources
- # and it should't be displayed here
+ # and it shouldn't be displayed here
if type(values) is dict:
result.append({
'resource': resource,