Wrap literal strings in backticks so they don't turn into URLs

This commit is contained in:
Chris Bednarski 2015-11-18 14:29:52 -08:00
parent 4f32d41810
commit 1493c82208
1 changed files with 2 additions and 2 deletions

View File

@ -2,8 +2,8 @@ module CommandHelpers
# Returns the markdown text for the general options usage.
def general_options_usage()
<<EOF
* `-address=<addr>`: The address of the Nomad server. Overrides the "NOMAD_ADDR"
environment variable if set. Defaults to "http://127.0.0.1:4646".
* `-address=<addr>`: The address of the Nomad server. Overrides the `NOMAD_ADDR`
environment variable if set. Defaults to `http://127.0.0.1:4646`.
EOF
end
end