From a8a9f54fab6007bd5101b9a50d0fc2bb39221cd9 Mon Sep 17 00:00:00 2001 From: Brian Cain Date: Fri, 15 Nov 2019 13:18:03 -0800 Subject: [PATCH] Update docs to use quotes around terms --- website/source/docs/provisioning/shell.html.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/website/source/docs/provisioning/shell.html.md b/website/source/docs/provisioning/shell.html.md index 29f863e84..6cd3d70c2 100644 --- a/website/source/docs/provisioning/shell.html.md +++ b/website/source/docs/provisioning/shell.html.md @@ -130,7 +130,7 @@ end ``` In the code block above, the script block starts with `<<-SCRIPT` and ends with `SCRIPT`. -This is known as a `Here Document` or a `heredoc`. Additionally, if your script +This is known as a "Here Document" or a "heredoc". Additionally, if your script relies on quotes and you do not wish for Ruby to escape your quotes, you may want to use this style of heredoc where `SCRIPT` is surrounded in single quotes: @@ -145,7 +145,7 @@ Vagrant.configure("2") do |config| end ``` -Now that our _heredoc_ is quoted, our script will preserve the quotes in the string to `echo`: +Now that our "heredoc" is quoted, our script will preserve the quotes in the string to `echo`: ``` ==> default: Running provisioner: shell... @@ -153,7 +153,7 @@ Now that our _heredoc_ is quoted, our script will preserve the quotes in the str default: These are my "quotes"! I am provisioning my guest. ``` -For more examples of how to use _heredoc_ in Ruby, please refer to the +For more examples of how to use "heredoc" in Ruby, please refer to the [Ruby documentation](https://ruby-doc.org/core-2.5.0/doc/syntax/literals_rdoc.html#label-Here+Documents). It is understandable that if you are not familiar with Ruby, the above may seem very