summaryrefslogtreecommitdiff
path: root/doc/source
diff options
context:
space:
mode:
authorJay Faulkner <jay@jvf.cc>2015-04-07 13:45:50 -0700
committerJay Faulkner <jay@jvf.cc>2015-04-07 13:45:50 -0700
commitbd1262a17d26469387d2c95d43131a097f4e71f2 (patch)
tree9d64622d418f74ee9ccd3681b9dee5e3d73ee82a /doc/source
parent021462beed2000efe1051ac8a34dca410c9f3111 (diff)
downloadironic-bd1262a17d26469387d2c95d43131a097f4e71f2.tar.gz
Fix bad quoting in quickstart guide
Before, the " and ' in the message was rendering into smart quotes, making copy+paste impossible. This fix places the commands inside the note into a blockquote, preventing sphinx from breaking copy+paste. Change-Id: I7291f7cbdb9c7fa16d23376792012a7a70c7c16b
Diffstat (limited to 'doc/source')
-rw-r--r--doc/source/dev/dev-quickstart.rst6
1 files changed, 3 insertions, 3 deletions
diff --git a/doc/source/dev/dev-quickstart.rst b/doc/source/dev/dev-quickstart.rst
index 01b27d644..223052651 100644
--- a/doc/source/dev/dev-quickstart.rst
+++ b/doc/source/dev/dev-quickstart.rst
@@ -366,11 +366,11 @@ Source credentials, create a key, and spawn an instance::
.. note::
Because devstack create multiple networks, we need to pass an additional parameter
- `--nic net-id` to the nova boot command when using the admin account, for example:
+ ``--nic net-id`` to the nova boot command when using the admin account, for example::
- net_id=$(neutron net-list | egrep "$PRIVATE_NETWORK_NAME"'[^-]' | awk '{ print $2 }')
+ net_id=$(neutron net-list | egrep "$PRIVATE_NETWORK_NAME"'[^-]' | awk '{ print $2 }')
- nova boot --flavor baremetal --nic net-id=$net_id --image $image --key-name default testing
+ nova boot --flavor baremetal --nic net-id=$net_id --image $image --key-name default testing
As the demo tenant, you should now see a Nova instance building::