diff options
author | Xavier Noria <fxn@hashref.com> | 2012-09-15 08:31:54 -0700 |
---|---|---|
committer | Xavier Noria <fxn@hashref.com> | 2012-09-15 08:31:54 -0700 |
commit | 714e34838b89aff82179ac64b2a0c3fa45bc032a (patch) | |
tree | ea6e414a71d2a728a1fea602734c4739904c3876 /railties/lib/rails/application.rb | |
parent | b96464e7eeb90983227ae63accd627878f2919b1 (diff) | |
parent | 75b9c2c236173f9f7b4985523d8d5b9f6853f32a (diff) | |
download | rails-714e34838b89aff82179ac64b2a0c3fa45bc032a.tar.gz rails-714e34838b89aff82179ac64b2a0c3fa45bc032a.tar.bz2 rails-714e34838b89aff82179ac64b2a0c3fa45bc032a.zip |
Merge pull request #7656 from czarneckid/clarify-documentation
Clarify the documentation on the Rails::Application#call method
Diffstat (limited to 'railties/lib/rails/application.rb')
-rw-r--r-- | railties/lib/rails/application.rb | 4 |
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) |