Fix typo in Vagrantfile

Fix typo in Vagrantfile in `vagrant-json` environment
This commit is contained in:
Scott S. Lowe 2016-10-12 21:52:17 -06:00
parent 2fd58a0476
commit 9304087a33

View file

@ -17,7 +17,7 @@ Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
# Always use Vagrant's default insecure key
config.ssh.insert_key = false
# Iterate through entries in YAML file to create VMs
# Iterate through entries in JSON file to create VMs
machines.each do |machine|
config.vm.define machine['name'] do |srv|