summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMonty Taylor <mordred@inaugust.com>2017-10-18 13:34:23 +0200
committerMonty Taylor <mordred@inaugust.com>2017-10-18 13:34:23 +0200
commitb87f3b387f0a8eb629a6c4ca955a8b396948218e (patch)
tree9037d86a4878156727b7ffb4e93b261fd5178cd8
parenta19b2825992f23efc98bd6ec7428427fc6bb1f1b (diff)
Fix code-block typos
-rw-r--r--src/everything-you-need-to-know.rst12
1 files 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
919Command Line 919Command Line
920============ 920============
921 921
922.. code-bock:: bash 922.. code-block:: bash
923 923
924 openstack --os-cloud=vexxhost1 image list 924 openstack --os-cloud=vexxhost1 image list
925 925
@@ -1075,7 +1075,7 @@ that would proxy to glance. It is removed in 2.36 and later.
1075 1075
1076Making a GET call defaults to the minimum (2.1 in this case) 1076Making a GET call defaults to the minimum (2.1 in this case)
1077 1077
1078.. code-bock:: python 1078.. code-block:: python
1079 1079
1080 import os_client_config 1080 import os_client_config
1081 1081
@@ -1093,7 +1093,7 @@ Simple Microversion Example with Microversion
1093Sending microversion 2.36 for the same call tells Nova to use the 2.36 1093Sending microversion 2.36 for the same call tells Nova to use the 2.36
1094behavior, which results in a 404. 1094behavior, which results in a 404.
1095 1095
1096.. code-bock:: python 1096.. code-block:: python
1097 1097
1098 import os_client_config 1098 import os_client_config
1099 1099
@@ -1112,7 +1112,7 @@ Create Server Group
1112 1112
1113The server group doesn't matter - this is just to have an object to show. 1113The server group doesn't matter - this is just to have an object to show.
1114 1114
1115.. code-bock:: python 1115.. code-block:: python
1116 1116
1117 import os_client_config 1117 import os_client_config
1118 1118
@@ -1126,7 +1126,7 @@ Example of No Microversion Content Behavior
1126 1126
1127No microversion specified. 1127No microversion specified.
1128 1128
1129.. code-bock:: python 1129.. code-block:: python
1130 1130
1131 client.get('/os-server-groups') 1131 client.get('/os-server-groups')
1132 1132
@@ -1141,7 +1141,7 @@ Example of Microversion Content Behavior
1141 1141
1142Request microversion 2.13, which adds user_id and project_id. 1142Request microversion 2.13, which adds user_id and project_id.
1143 1143
1144.. code-bock:: python 1144.. code-block:: python
1145 1145
1146 client.get('/os-server-groups', microversion='2.13').json() 1146 client.get('/os-server-groups', microversion='2.13').json()
1147 1147