diff --git a/doc/doc-contrib-guide/source/writing-style/code-conventions.rst b/doc/doc-contrib-guide/source/writing-style/code-conventions.rst index 321e84b9c4..c8bbc62138 100644 --- a/doc/doc-contrib-guide/source/writing-style/code-conventions.rst +++ b/doc/doc-contrib-guide/source/writing-style/code-conventions.rst @@ -13,9 +13,8 @@ Follow these guidelines: * **Use "--option ARGUMENT"** - The OpenStack CLI commands such as ``keystone`` support both - ``--option ARGUMENT`` and ``--option=ARGUMENT``. In technical publications, - use ``--option ARGUMENT``. + The OpenStack CLI supports both ``--option ARGUMENT`` and + ``--option=ARGUMENT``. In technical publications, use ``--option ARGUMENT``. * **Use "." to source script files** diff --git a/doc/doc-contrib-guide/source/writing-style/ui-terminology.rst b/doc/doc-contrib-guide/source/writing-style/ui-terminology.rst index 787b6825b4..a92642c23a 100644 --- a/doc/doc-contrib-guide/source/writing-style/ui-terminology.rst +++ b/doc/doc-contrib-guide/source/writing-style/ui-terminology.rst @@ -30,6 +30,9 @@ When documenting actions that readers must perform in a command-line interface the output. Use ellipses (...) to show that the page displays a portion of the output. +* Always use the OpenStack Client ``openstack`` for CLI commands rather than + per-project CLI tools such as ``nova``. + * Depending on whether you describe CLI actions in the running text or in procedures, consider the following usage: @@ -43,9 +46,10 @@ When documenting actions that readers must perform in a command-line interface between the two devices. - You can use the :command:`ping` command to verify the network connection between the two devices. - * - You can use :command:`nova image-create` command to take a snapshot. - - You can use the :command:`nova image-create` command to take - a snapshot. + * - You can use :command:`openstack server image create` command to take a + snapshot. + - You can use the :command:`openstack server image create` command to + take a snapshot. |