From 9304087a338046a8eccf741c45dd14a8168c45f6 Mon Sep 17 00:00:00 2001 From: "Scott S. Lowe" Date: Wed, 12 Oct 2016 21:52:17 -0600 Subject: [PATCH] Fix typo in Vagrantfile Fix typo in Vagrantfile in `vagrant-json` environment --- vagrant-json/Vagrantfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vagrant-json/Vagrantfile b/vagrant-json/Vagrantfile index 9ad5277..3c5da28 100644 --- a/vagrant-json/Vagrantfile +++ b/vagrant-json/Vagrantfile @@ -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|