diff --git a/website/source/docs/provisioning/basic_usage.html.md b/website/source/docs/provisioning/basic_usage.html.md index 5008d9531..1939fe4ba 100644 --- a/website/source/docs/provisioning/basic_usage.html.md +++ b/website/source/docs/provisioning/basic_usage.html.md @@ -210,8 +210,13 @@ the `preserve_order: true` flag: ```ruby Vagrant.configure("2") do |config| - config.vm.provision "do-this", type: "shell", preserve_order: true, inline: "echo FIRST!" - config.vm.provision "then-this", type: "shell", preserve_order: true, inline: "echo SECOND!" + config.vm.provision "do-this", + type: "shell", + preserve_order: true, + inline: "echo FIRST!" + config.vm.provision "then-this", + type: "shell", + preserve_order: true, + inline: "echo SECOND!" end ``` -