Typo fixes for docs
This commit is contained in:
parent
2e1d2b1859
commit
4e2472befc
|
@ -24,7 +24,7 @@ module Vagrant
|
||||||
end
|
end
|
||||||
|
|
||||||
# Returns the current stack of middlewares. You probably won't
|
# Returns the current stack of middlewares. You probably won't
|
||||||
# need to use this directly, and its recommended that you don't.
|
# need to use this directly, and it's recommended that you don't.
|
||||||
#
|
#
|
||||||
# @return [Array]
|
# @return [Array]
|
||||||
def stack
|
def stack
|
||||||
|
|
|
@ -7,8 +7,9 @@ module Vagrant
|
||||||
# exceptional events, and by providing a simple callback, can clean up
|
# exceptional events, and by providing a simple callback, can clean up
|
||||||
# in any erroneous case.
|
# in any erroneous case.
|
||||||
#
|
#
|
||||||
# Except for those who are curious about the internal workings of Vagrant,
|
# Warden will "just work" behind the scenes, and is not of particular
|
||||||
# Warden will "just work" behind the scenes.
|
# interest except to those who are curious about the internal workings
|
||||||
|
# of Vagrant.
|
||||||
class Warden
|
class Warden
|
||||||
attr_accessor :actions, :stack
|
attr_accessor :actions, :stack
|
||||||
|
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
module Vagrant
|
module Vagrant
|
||||||
module Provisioners
|
module Provisioners
|
||||||
# This class is a base class where the common functinality shared between
|
# This class is a base class where the common functionality shared between
|
||||||
# chef-solo and chef-client provisioning are stored. This is **not an actual
|
# chef-solo and chef-client provisioning are stored. This is **not an actual
|
||||||
# provisioner**. Instead, {ChefSolo} or {ChefServer} should be used.
|
# provisioner**. Instead, {ChefSolo} or {ChefServer} should be used.
|
||||||
class Chef < Base
|
class Chef < Base
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
module Vagrant
|
module Vagrant
|
||||||
module Util
|
module Util
|
||||||
# A hash with indifferent access. Mostly taken from Thor/Rails (thanks).
|
# A hash with indifferent access. Mostly taken from Thor/Rails (thanks).
|
||||||
# Normally I'm not a fan of using an indifferent access hash sine Symbols
|
# Normally I'm not a fan of using an indifferent access hash since Symbols
|
||||||
# are basically memory leaks in Ruby, but since Vagrant is typically a quick
|
# are basically memory leaks in Ruby, but since Vagrant is typically a quick
|
||||||
# one-off binary run and it doesn't use too many hash keys where this is
|
# one-off binary run and it doesn't use too many hash keys where this is
|
||||||
# used, the effect should be minimal.
|
# used, the effect should be minimal.
|
||||||
|
|
Loading…
Reference in New Issue