aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDavid Czarnecki <czarneckid@acm.org>2012-09-15 11:11:54 -0400
committerDavid Czarnecki <czarneckid@acm.org>2012-09-15 11:11:54 -0400
commit75b9c2c236173f9f7b4985523d8d5b9f6853f32a (patch)
treeea6e414a71d2a728a1fea602734c4739904c3876
parentb96464e7eeb90983227ae63accd627878f2919b1 (diff)
downloadrails-75b9c2c236173f9f7b4985523d8d5b9f6853f32a.tar.gz
rails-75b9c2c236173f9f7b4985523d8d5b9f6853f32a.tar.bz2
rails-75b9c2c236173f9f7b4985523d8d5b9f6853f32a.zip
Clarify the documentation on the Rails::Application#call method
-rw-r--r--railties/lib/rails/application.rb4
1 files 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)