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|