From 2a17bc4f1dd5a50d66c5e4fc3043e995fb751036 Mon Sep 17 00:00:00 2001 From: Fabio Rehm Date: Sun, 6 Apr 2014 21:05:13 -0300 Subject: [PATCH] Minor tweaks to generic bucket docs [GH-94] --- docs/buckets/generic.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/buckets/generic.md b/docs/buckets/generic.md index c9e3f10..10d604a 100644 --- a/docs/buckets/generic.md +++ b/docs/buckets/generic.md @@ -9,11 +9,11 @@ Vagrant.configure("2") do |config| end ``` -The :cache_dir parameter is required. It specifies the directory on the guest +The `:cache_dir` parameter is required. It specifies the directory on the guest that will be cached under the "generic" bucket. You may enable more than one generic bucket by giving them different names via -the :name parameter, like this: +the `:name` parameter, like this: ```ruby Vagrant.configure("2") do |config| @@ -26,7 +26,7 @@ In this case you get two buckets called "generic-one" and "generic-two". The Generic bucket is useful if you want to implement a caching mechanism by hand. For instance, if you want to cache your wget downloads under -/var/cache/wget you can do this: +`/var/cache/wget` you can do this: ```ruby Vagrant.configure("2") do |config|