From d247258e25abbdb67f9011e40d7cc3886398df16 Mon Sep 17 00:00:00 2001 From: Mitchell Hashimoto Date: Mon, 26 Jul 2010 09:12:34 -0700 Subject: [PATCH] Typo correction: down => destroy --- docs/getting-started/boxes.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/getting-started/boxes.md b/docs/getting-started/boxes.md index 95497715b..7367b099f 100644 --- a/docs/getting-started/boxes.md +++ b/docs/getting-started/boxes.md @@ -81,11 +81,11 @@ by running `vagrant up` which will create the environment. After a few minutes, have a fully running virtual machine. We haven't yet forwarded any ports and we haven't covered SSH yet, so you'll just have to take our word that its working for now. Finally, when you're finished verifying the virtual machine, you can destroy everything with a -`vagrant down`. +`vagrant destroy`. {% highlight bash %} $ vagrant up ... -$ vagrant down +$ vagrant destroy ... {% endhighlight %}