Merge "Fix six typos"

This commit is contained in:
Jenkins 2016-08-29 12:49:43 +00:00 committed by Gerrit Code Review
commit b42740816d
4 changed files with 6 additions and 6 deletions

View File

@ -74,7 +74,7 @@ volume qos disassociate
Disassociate a QoS specification from a volume type Disassociate a QoS specification from a volume type
.. program:: volume qos disassoiate .. program:: volume qos disassociate
.. code:: bash .. code:: bash
os volume qos disassociate os volume qos disassociate

View File

@ -17,7 +17,7 @@ new command without understanding why or why not that instance is correct.
The :doc:`Human Interface Guide <humaninterfaceguide>` The :doc:`Human Interface Guide <humaninterfaceguide>`
describes the guildelines for option names and usage. In short: describes the guildelines for option names and usage. In short:
* All option names shall be GNU-style long names (two leading dashes). * All option names shall be GNU-style long names (two leading dashes).
* Some global options may have short nmaes, generally limited to those defined * Some global options may have short names, generally limited to those defined
in support libraries such as ``cliff``. in support libraries such as ``cliff``.
General Command Options General Command Options
@ -36,7 +36,7 @@ prepended (such as in the traditional GNU option usage) like `--share` and
In order to handle those APIs that behave differently when a field is set to In order to handle those APIs that behave differently when a field is set to
`None` and when the field is not present in a passed argument list or dict, `None` and when the field is not present in a passed argument list or dict,
each of the boolean options shall set its own variable to `True` as part of each of the boolean options shall set its own variable to `True` as part of
a mutiually exclusive group, rather than the more common configuration of a mutually exclusive group, rather than the more common configuration of
setting a single destination variable `True` or `False` directly. This allows setting a single destination variable `True` or `False` directly. This allows
us to detect the situation when neither option is present (both variables will us to detect the situation when neither option is present (both variables will
be `False`) and act accordingly for those APIs where this matters. be `False`) and act accordingly for those APIs where this matters.
@ -218,7 +218,7 @@ Some options have no default value and the API does not allow them to be
`None`, then these options are always required when users use the command `None`, then these options are always required when users use the command
to which these options belong. to which these options belong.
Required options must be validated by the CLI to aviod omissions. The CLI Required options must be validated by the CLI to avoid omissions. The CLI
validation may provide an error message for the user if a required option validation may provide an error message for the user if a required option
is not specified. is not specified.
(for example: ``error: argument --test is required``) (for example: ``error: argument --test is required``)

View File

@ -162,7 +162,7 @@ list check out :doc:`plugin-commands`.
* ``cluster event``: (**Clustering (Senlin)**) * ``cluster event``: (**Clustering (Senlin)**)
* ``cluster members``: (**Clustering (Senlin)**) * ``cluster members``: (**Clustering (Senlin)**)
* ``cluster node``: (**Clustering (Senlin)**) * ``cluster node``: (**Clustering (Senlin)**)
* ``cluster policy``: (**CLustering (Senlin)**) * ``cluster policy``: (**Clustering (Senlin)**)
* ``cluster policy binding``: (**Clustering (Senlin)**) * ``cluster policy binding``: (**Clustering (Senlin)**)
* ``cluster policy type``: (**Clustering (Senlin)**) * ``cluster policy type``: (**Clustering (Senlin)**)
* ``cluster profile``: (**Clustering (Senlin)**) * ``cluster profile``: (**Clustering (Senlin)**)

View File

@ -169,7 +169,7 @@ the plugin commands:
... ...
def take_action(self, parsed_args): def take_action(self, parsed_args):
# Client manager interfaces are availble to plugins. # Client manager interfaces are available to plugins.
# This includes the OSC clients created. # This includes the OSC clients created.
client_manager = self.app.client_manager client_manager = self.app.client_manager