aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorFrancis Go <francis.go@gmail.com>2017-11-27 18:43:24 +0000
committerFrancis Go <francis.go@gmail.com>2017-11-27 18:43:24 +0000
commit9cb7c90c59f18d72c13da5808ad368f4f5b60f36 (patch)
tree30e24c562ebab724853ceabca629095b122e2285
parent31eabcedb1f3f1c11f26dad239f0ecdbb1c60782 (diff)
downloadrails-9cb7c90c59f18d72c13da5808ad368f4f5b60f36.tar.gz
rails-9cb7c90c59f18d72c13da5808ad368f4f5b60f36.tar.bz2
rails-9cb7c90c59f18d72c13da5808ad368f4f5b60f36.zip
Update Rails on Rack guide [ci skip]
-rw-r--r--guides/source/rails_on_rack.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/guides/source/rails_on_rack.md b/guides/source/rails_on_rack.md
index aa1476ecc0..34b709015e 100644
--- a/guides/source/rails_on_rack.md
+++ b/guides/source/rails_on_rack.md
@@ -249,7 +249,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`**
@@ -289,7 +289,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`**