Fix code-block typos

This commit is contained in:
Monty Taylor 2017-10-18 13:34:23 +02:00
parent a19b282599
commit b87f3b387f
No known key found for this signature in database
GPG Key ID: 7BAE94BC7141A594
1 changed files with 6 additions and 6 deletions

View File

@ -919,7 +919,7 @@ Creating keystoneauth session directly
Command Line Command Line
============ ============
.. code-bock:: bash .. code-block:: bash
openstack --os-cloud=vexxhost1 image list openstack --os-cloud=vexxhost1 image list
@ -1075,7 +1075,7 @@ that would proxy to glance. It is removed in 2.36 and later.
Making a GET call defaults to the minimum (2.1 in this case) Making a GET call defaults to the minimum (2.1 in this case)
.. code-bock:: python .. code-block:: python
import os_client_config import os_client_config
@ -1093,7 +1093,7 @@ Simple Microversion Example with Microversion
Sending microversion 2.36 for the same call tells Nova to use the 2.36 Sending microversion 2.36 for the same call tells Nova to use the 2.36
behavior, which results in a 404. behavior, which results in a 404.
.. code-bock:: python .. code-block:: python
import os_client_config import os_client_config
@ -1112,7 +1112,7 @@ Create Server Group
The server group doesn't matter - this is just to have an object to show. The server group doesn't matter - this is just to have an object to show.
.. code-bock:: python .. code-block:: python
import os_client_config import os_client_config
@ -1126,7 +1126,7 @@ Example of No Microversion Content Behavior
No microversion specified. No microversion specified.
.. code-bock:: python .. code-block:: python
client.get('/os-server-groups') client.get('/os-server-groups')
@ -1141,7 +1141,7 @@ Example of Microversion Content Behavior
Request microversion 2.13, which adds user_id and project_id. Request microversion 2.13, which adds user_id and project_id.
.. code-bock:: python .. code-block:: python
client.get('/os-server-groups', microversion='2.13').json() client.get('/os-server-groups', microversion='2.13').json()