From 75b9c2c236173f9f7b4985523d8d5b9f6853f32a Mon Sep 17 00:00:00 2001 From: David Czarnecki Date: Sat, 15 Sep 2012 11:11:54 -0400 Subject: Clarify the documentation on the Rails::Application#call method --- railties/lib/rails/application.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/railties/lib/rails/application.rb b/railties/lib/rails/application.rb index aa5b986862..050190cba6 100644 --- a/railties/lib/rails/application.rb +++ b/railties/lib/rails/application.rb @@ -89,8 +89,8 @@ module Rails @initialized end - # Implements call according to the Rack API. It simples - # dispatch the request to the underlying middleware stack. + # Implements call according to the Rack API. It simply + # dispatches the request to the underlying middleware stack. def call(env) env["ORIGINAL_FULLPATH"] = build_original_fullpath(env) super(env) -- cgit v1.2.3