Merge pull request #8599 from vmelnik-ukraine/fix/master/boxes_doc_example

Fix #8598 : example in docs for box usage.
This commit is contained in:
Chris Roberts 2017-06-14 16:38:19 -07:00 committed by GitHub
commit b35a8f0447
1 changed files with 2 additions and 2 deletions

View File

@ -69,8 +69,8 @@ $ vagrant init hashicorp/precise64
or you can update your `Vagrantfile` as follows:
```ruby
Vagrant.configure("2") do
config.box = "hashicorp/precise64"
Vagrant.configure("2") do |config|
config.vm.box = "hashicorp/precise64"
end
```