From 9400a853240564c84860b8a901eb3a49a862ab5c Mon Sep 17 00:00:00 2001 From: vmelnik-ukraine Date: Thu, 18 May 2017 14:20:31 +0800 Subject: [PATCH] Fix #8598 : example in docs for box usage. --- website/source/docs/boxes.html.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/website/source/docs/boxes.html.md b/website/source/docs/boxes.html.md index 0632dcb10..97eb188b4 100644 --- a/website/source/docs/boxes.html.md +++ b/website/source/docs/boxes.html.md @@ -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 ```