Fix #8598 : example in docs for box usage.

This commit is contained in:
vmelnik-ukraine 2017-05-18 14:20:31 +08:00
parent 20b4766dd7
commit 9400a85324
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
```