Vagrant::Action::Builder RDoc correction

The RDoc comments for `Vagrant::Action::Builder#to_app` reference an
instance of `Vagrant::Action::Environment` as the passed paramter. There
is no class `Vagrant::Action::Environment` available. The param being
passed is actually a `Hash` that represents the "action environment".

This commit corrects the RDoc lines for
`Vagrant::Action::Builder#to_app` to correctly reference the passed
`Hash`.
This commit is contained in:
Thomas Linkin 2013-06-24 13:00:03 -04:00
parent e1e57024dc
commit d95b202346
1 changed files with 1 additions and 1 deletions

View File

@ -131,7 +131,7 @@ module Vagrant
# Converts the builder stack to a runnable action sequence. # Converts the builder stack to a runnable action sequence.
# #
# @param [Vagrant::Action::Environment] env The action environment # @param [Hash] env The action environment hash
# @return [Object] A callable object # @return [Object] A callable object
def to_app(env) def to_app(env)
app_stack = nil app_stack = nil