Merge pull request #5385 from davidsantoso/fix/master/docs-reorder-foward-port-args

website/docs: Reorder forward port args in Getting Started
This commit is contained in:
Mitchell Hashimoto 2015-02-24 10:21:52 -08:00
commit 0d3584c5a9
1 changed files with 1 additions and 1 deletions

View File

@ -26,7 +26,7 @@ is a simple edit to the Vagrantfile, which now looks like this:
Vagrant.configure("2") do |config|
config.vm.box = "hashicorp/precise32"
config.vm.provision :shell, path: "bootstrap.sh"
config.vm.network :forwarded_port, host: 4567, guest: 80
config.vm.network :forwarded_port, guest: 80, host: 4567
end
```