diff options
author | Prathamesh Sonpatki <csonpatki@gmail.com> | 2013-04-03 22:47:31 +0530 |
---|---|---|
committer | Prathamesh Sonpatki <csonpatki@gmail.com> | 2013-04-03 22:48:09 +0530 |
commit | 8e17908d670137c9c298a3e47a01aa5307513bf3 (patch) | |
tree | 9bcf77f2ef735ea7d86b4abbc56e2b958d7f56c4 /guides/source | |
parent | a4bd64ffeda0ffe2839030044eca762835be7901 (diff) | |
download | rails-8e17908d670137c9c298a3e47a01aa5307513bf3.tar.gz rails-8e17908d670137c9c298a3e47a01aa5307513bf3.tar.bz2 rails-8e17908d670137c9c298a3e47a01aa5307513bf3.zip |
Fixed Typo
Diffstat (limited to 'guides/source')
-rw-r--r-- | guides/source/rails_on_rack.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/guides/source/rails_on_rack.md b/guides/source/rails_on_rack.md index 1bf34bf3cd..e6fdedb911 100644 --- a/guides/source/rails_on_rack.md +++ b/guides/source/rails_on_rack.md @@ -104,7 +104,7 @@ $ rackup --help Action Dispatcher Middleware Stack ---------------------------------- -Many of Action Dispatchers's internal components are implemented as Rack middlewares. `Rails::Application` uses `ActionDispatch::MiddlewareStack` to combine various internal and external middlewares to form a complete Rails Rack application. +Many of Action Dispatcher's internal components are implemented as Rack middlewares. `Rails::Application` uses `ActionDispatch::MiddlewareStack` to combine various internal and external middlewares to form a complete Rails Rack application. NOTE: `ActionDispatch::MiddlewareStack` is Rails equivalent of `Rack::Builder`, but built for better flexibility and more features to meet Rails' requirements. |