Clarify the documentation on the Rails::Application#call method

This commit is contained in:
David Czarnecki 2012-09-15 11:11:54 -04:00
parent b96464e7ee
commit 75b9c2c236

@ -89,8 +89,8 @@ def initialized?
@initialized @initialized
end end
# Implements call according to the Rack API. It simples # Implements call according to the Rack API. It simply
# dispatch the request to the underlying middleware stack. # dispatches the request to the underlying middleware stack.
def call(env) def call(env)
env["ORIGINAL_FULLPATH"] = build_original_fullpath(env) env["ORIGINAL_FULLPATH"] = build_original_fullpath(env)
super(env) super(env)