From 56da36c2361e0053652abf497abf549cd31e23c2 Mon Sep 17 00:00:00 2001 From: Jonathan Otano Date: Fri, 9 Nov 2018 20:21:10 -0500 Subject: [PATCH] fixed typo (#25144) --- guide/english/developer-tools/vagrant/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/guide/english/developer-tools/vagrant/index.md b/guide/english/developer-tools/vagrant/index.md index be326f2be2..ba2490ee2d 100644 --- a/guide/english/developer-tools/vagrant/index.md +++ b/guide/english/developer-tools/vagrant/index.md @@ -9,7 +9,7 @@ Vagrant is a tool for building and managing virtual machine (VM) environments. V As a developer, by using a VM, you can have a local environment for testing code, that is the same as the production environment, regardless of the environment you use for coding. -For DevOps, VMs are very usefull for having a highly configurable, disposable machine for testing infrastracture, configurations, scripts, or anything else. +For DevOps, VMs are very useful for having a highly configurable, disposable machine for testing infrastracture, configurations, scripts, or anything else. With Vagrant, to use a VM you only need a single file, called a `VagrantFile`, which contains the VM as well as all the configuration needed. This way you can easily create a specific, isolated development environment which is very portable and can be shared and used by all members of a team.