diff options
author | Jon Moss <me@jonathanmoss.me> | 2017-04-10 11:04:38 -0400 |
---|---|---|
committer | Jon Moss <me@jonathanmoss.me> | 2017-04-10 11:04:38 -0400 |
commit | 374dca2d66d474ba3434bd67e9a20e4388b2a83e (patch) | |
tree | d4a80c6b2d0cf2d21b07e2eefaf7ca32ec22bd74 | |
parent | 8801108c0f12827832a0082e17d2c087815fd99f (diff) | |
download | rails-374dca2d66d474ba3434bd67e9a20e4388b2a83e.tar.gz rails-374dca2d66d474ba3434bd67e9a20e4388b2a83e.tar.bz2 rails-374dca2d66d474ba3434bd67e9a20e4388b2a83e.zip |
Small grammar fixes
[ci skip]
-rw-r--r-- | guides/source/rails_on_rack.md | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/guides/source/rails_on_rack.md b/guides/source/rails_on_rack.md index 340933c7ee..ed9c4bb72a 100644 --- a/guides/source/rails_on_rack.md +++ b/guides/source/rails_on_rack.md @@ -22,7 +22,9 @@ Rack provides a minimal, modular and adaptable interface for developing web appl * [Rack API Documentation](http://rack.github.io/) -Explaining Rack is not really in the scope of this guide. In case you are not familiar with Rack's basics, you should check out the [Resources](#resources) section below. +Explaining how Rack works is not really in the scope of this guide. In case you +are not familiar with Rack's basics, you should check out the [Resources](#resources) +section below. Rails on Rack ------------- @@ -74,7 +76,7 @@ And start the server: $ rackup config.ru ``` -To find out more about different `rackup` options: +To find out more about different `rackup` options, you can run: ```bash $ rackup --help @@ -89,7 +91,8 @@ Action Dispatcher Middleware Stack 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. +NOTE: `ActionDispatch::MiddlewareStack` is Rails' equivalent of `Rack::Builder`, +but is built for better flexibility and more features to meet Rails' requirements. ### Inspecting Middleware Stack |