mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
Small grammar fixes
[ci skip]
This commit is contained in:
parent
8801108c0f
commit
374dca2d66
1 changed files with 6 additions and 3 deletions
|
@ -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
|
||||
|
||||
|
|
Loading…
Reference in a new issue