website/docs: use string instead of symbol

This commit is contained in:
Mitchell Hashimoto 2014-02-04 11:01:04 +01:00
parent a2daa9851c
commit 8bd073f08a
1 changed files with 1 additions and 1 deletions

View File

@ -34,7 +34,7 @@ via DHCP.
```ruby
Vagrant.configure("2") do |config|
config.vm.network "private_network", type: :dhcp
config.vm.network "private_network", type: "dhcp"
end
```