From b87f3b387f0a8eb629a6c4ca955a8b396948218e Mon Sep 17 00:00:00 2001 From: Monty Taylor Date: Wed, 18 Oct 2017 13:34:23 +0200 Subject: Fix code-block typos --- src/everything-you-need-to-know.rst | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/everything-you-need-to-know.rst b/src/everything-you-need-to-know.rst index f478d55..f4892b2 100644 --- a/src/everything-you-need-to-know.rst +++ b/src/everything-you-need-to-know.rst @@ -919,7 +919,7 @@ Creating keystoneauth session directly Command Line ============ -.. code-bock:: bash +.. code-block:: bash 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) -.. code-bock:: python +.. code-block:: python 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 behavior, which results in a 404. -.. code-bock:: python +.. code-block:: python 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. -.. code-bock:: python +.. code-block:: python import os_client_config @@ -1126,7 +1126,7 @@ Example of No Microversion Content Behavior No microversion specified. -.. code-bock:: python +.. code-block:: python 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. -.. code-bock:: python +.. code-block:: python client.get('/os-server-groups', microversion='2.13').json() -- cgit v1.2.3