diff options
author | Rafael França <rafaelmfranca@gmail.com> | 2017-11-27 14:48:04 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-11-27 14:48:04 -0500 |
commit | 5fb36d03dba0eb5309788b53372ebe7dd980639d (patch) | |
tree | bc05b6d1c079c2686b3957ed8e06255a79a9816d /guides | |
parent | fb09e05bdf6b2cd73a19e7a71087130f6b95c961 (diff) | |
parent | 9cb7c90c59f18d72c13da5808ad368f4f5b60f36 (diff) | |
download | rails-5fb36d03dba0eb5309788b53372ebe7dd980639d.tar.gz rails-5fb36d03dba0eb5309788b53372ebe7dd980639d.tar.bz2 rails-5fb36d03dba0eb5309788b53372ebe7dd980639d.zip |
Merge pull request #31242 from fgo/patch-22
Update Rails on Rack guide [ci skip]
Diffstat (limited to 'guides')
-rw-r--r-- | guides/source/rails_on_rack.md | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/guides/source/rails_on_rack.md b/guides/source/rails_on_rack.md index 8caddc785a..5718b9ddfc 100644 --- a/guides/source/rails_on_rack.md +++ b/guides/source/rails_on_rack.md @@ -250,7 +250,7 @@ Much of Action Controller's functionality is implemented as Middlewares. The fol **`Rails::Rack::Logger`** -* Notifies the logs that the request has began. After request is complete, flushes all the logs. +* Notifies the logs that the request has begun. After the request is complete, flushes all the logs. **`ActionDispatch::ShowExceptions`** @@ -290,7 +290,7 @@ Much of Action Controller's functionality is implemented as Middlewares. The fol **`Rack::ConditionalGet`** -* Adds support for "Conditional `GET`" so that server responds with nothing if page wasn't changed. +* Adds support for "Conditional `GET`" so that server responds with nothing if the page wasn't changed. **`Rack::ETag`** |