summaryrefslogtreecommitdiff
path: root/doc/source
diff options
context:
space:
mode:
authorDougal Matthews <dougal@redhat.com>2016-12-08 13:15:14 +0000
committerDougal Matthews <dougal@redhat.com>2016-12-08 13:15:47 +0000
commit841616f729836230c0762566ba5c2bfceb14a2a0 (patch)
tree85043cd91fea4763939e79c517f88935b46e1328 /doc/source
parent158dbe124a11873129d2b3fbc6a9b5a6695e7bcc (diff)
downloadpython-openstackclient-841616f729836230c0762566ba5c2bfceb14a2a0.tar.gz
Correct missspellings of secret
Change-Id: Ia00d5cf3a32f534d1c0f40d5b295610f88a777d4
Diffstat (limited to 'doc/source')
-rw-r--r--doc/source/humaninterfaceguide.rst6
-rw-r--r--doc/source/man/openstack.rst2
2 files changed, 4 insertions, 4 deletions
diff --git a/doc/source/humaninterfaceguide.rst b/doc/source/humaninterfaceguide.rst
index 400ccfcf..b43c71a9 100644
--- a/doc/source/humaninterfaceguide.rst
+++ b/doc/source/humaninterfaceguide.rst
@@ -2,7 +2,7 @@
Human Interface Guide
=====================
-*Note: This page covers the OpenStackClient CLI only but looks familiar
+*Note: This page covers the OpenStackClient CLI only but looks familiar
because it was derived from the Horizon HIG.*
Overview
@@ -297,7 +297,7 @@ Using global options:
.. code-block:: bash
- $ openstack --os-tenant-name ExampleCo --os-username demo --os-password secrete --os-auth-url http://localhost:5000:/v2.0 server show appweb01
+ $ openstack --os-tenant-name ExampleCo --os-username demo --os-password secret --os-auth-url http://localhost:5000:/v2.0 server show appweb01
+------------------------+-----------------------------------------------------+
| Property | Value |
+------------------------+-----------------------------------------------------+
@@ -319,7 +319,7 @@ Using environment variables:
$ export OS_TENANT_NAME=ExampleCo
$ export OS_USERNAME=demo
- $ export OS_PASSWORD=secrete
+ $ export OS_PASSWORD=secret
$ export OS_AUTH_URL=http://localhost:5000:/v2.0
$ openstack server show appweb01
+------------------------+-----------------------------------------------------+
diff --git a/doc/source/man/openstack.rst b/doc/source/man/openstack.rst
index aeed2cad..5793c6ee 100644
--- a/doc/source/man/openstack.rst
+++ b/doc/source/man/openstack.rst
@@ -288,7 +288,7 @@ Show the detailed information for server ``appweb01``::
openstack \
--os-project-name ExampleCo \
- --os-username demo --os-password secrete \
+ --os-username demo --os-password secret \
--os-auth-url http://localhost:5000:/v2.0 \
server show appweb01