From 54aa2f640a8212ec13c737731c7f701b1bb2845d Mon Sep 17 00:00:00 2001 From: Seth Vargo Date: Tue, 12 Jan 2016 14:10:21 -0500 Subject: [PATCH] Grammar --- website/docs/source/v2/vagrantfile/tips.html.md | 17 ++++++++--------- 1 file changed, 8 insertions(+), 9 deletions(-) diff --git a/website/docs/source/v2/vagrantfile/tips.html.md b/website/docs/source/v2/vagrantfile/tips.html.md index 5c84ec14a..b7b3e1149 100644 --- a/website/docs/source/v2/vagrantfile/tips.html.md +++ b/website/docs/source/v2/vagrantfile/tips.html.md @@ -50,17 +50,16 @@ so the best we can do is mention it here. ## Overwrite host locale in ssh session -Usually, host locale environment variables are passed to guest. It may cause -failures when guest software do not support host locale - -Possible solution is override locale in Vagrant file: +Usually, host locale environment variables are passed to guest. It may cause +failures if the guest software do not support host locale. One possible solution +is override locale in the `Vagrantfile`:
+ENV["LC_ALL"] = "en_US.UTF-8"
+
 Vagrant.configure(2) do |config|
-  config.vm.box = "ubuntu/vivid64"
-  ENV['LC_ALL']="en_US.UTF-8"
-end 
+  # ...
+end
 
-The change is visible within Vagrantfile only. - +The change is only visible within the `Vagrantfile`.