aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack
diff options
context:
space:
mode:
authorJeremy Daer <jeremydaer@gmail.com>2016-04-02 17:36:05 -0700
committerJeremy Daer <jeremydaer@gmail.com>2016-04-02 17:36:05 -0700
commit78f188a2f8e0f2d8bdb1d9ae38acc1d47af17a9d (patch)
treee984ead5381079e4e3f5c26bce791e2b7fed7c5f /actionpack
parent32fd82970b784d9f465f59b5c5497511851540a5 (diff)
parent0bbd9da0047f8df63377ef12d6d16830778f4a13 (diff)
downloadrails-78f188a2f8e0f2d8bdb1d9ae38acc1d47af17a9d.tar.gz
rails-78f188a2f8e0f2d8bdb1d9ae38acc1d47af17a9d.tar.bz2
rails-78f188a2f8e0f2d8bdb1d9ae38acc1d47af17a9d.zip
Merge pull request #24403 from vipulnsward/etag-doc-pass
Grammar fixes based on pass over ETag doc changes
Diffstat (limited to 'actionpack')
-rw-r--r--actionpack/lib/action_controller/metal/conditional_get.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/actionpack/lib/action_controller/metal/conditional_get.rb b/actionpack/lib/action_controller/metal/conditional_get.rb
index f202000347..480e265e44 100644
--- a/actionpack/lib/action_controller/metal/conditional_get.rb
+++ b/actionpack/lib/action_controller/metal/conditional_get.rb
@@ -41,7 +41,7 @@ module ActionController
# * <tt>:weak_etag</tt> Sets a "weak" ETag validator on the response.
# Requests that set If-None-Match header may return a 304 Not Modified
# response if it matches the ETag exactly. A weak ETag indicates semantic
- # equivalence, not byte-for-byte equality, so they're a good for caching
+ # equivalence, not byte-for-byte equality, so they're good for caching
# HTML pages in browser caches. They can't be used for responses that
# must be byte-identical, like serving Range requests within a PDF file.
# * <tt>:strong_etag</tt> Sets a "strong" ETag validator on the response.
@@ -131,7 +131,7 @@ module ActionController
# * <tt>:weak_etag</tt> Sets a "weak" ETag validator on the response.
# requests that set If-None-Match header may return a 304 Not Modified
# response if it matches the ETag exactly. A weak ETag indicates semantic
- # equivalence, not byte-for-byte equality, so they're a good for caching
+ # equivalence, not byte-for-byte equality, so they're good for caching
# HTML pages in browser caches. They can't be used for responses that
# must be byte-identical, like serving Range requests within a PDF file.
# * <tt>:strong_etag</tt> Sets a "strong" ETag validator on the response.