diff options
author | Arthur Nogueira Neves <github@arthurnn.com> | 2015-04-25 12:41:15 -0400 |
---|---|---|
committer | Arthur Nogueira Neves <github@arthurnn.com> | 2015-04-25 12:41:15 -0400 |
commit | 0cb047aa9e7b04605f4f84f0051351cf741b36e5 (patch) | |
tree | 695574c78874e8def2d056a0e700580a4f5c39e3 | |
parent | e61f4ea31376bc253acb4c9365f858b01ee8e493 (diff) | |
parent | 14d7e058a0eb311a42c3510393f153e56b4b2934 (diff) | |
download | rails-0cb047aa9e7b04605f4f84f0051351cf741b36e5.tar.gz rails-0cb047aa9e7b04605f4f84f0051351cf741b36e5.tar.bz2 rails-0cb047aa9e7b04605f4f84f0051351cf741b36e5.zip |
Merge pull request #19899 from tgxworld/fix_doc
No need to capitalize verbs. [CI SKIP]
-rw-r--r-- | actionpack/lib/action_dispatch/middleware/cookies.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/actionpack/lib/action_dispatch/middleware/cookies.rb b/actionpack/lib/action_dispatch/middleware/cookies.rb index 139706ecb9..bb6a73afb5 100644 --- a/actionpack/lib/action_dispatch/middleware/cookies.rb +++ b/actionpack/lib/action_dispatch/middleware/cookies.rb @@ -462,7 +462,7 @@ module ActionDispatch end end - # Signs and Sets the cookie named +name+. The second argument may be the cookie's + # Signs and sets the cookie named +name+. The second argument may be the cookie's # value or a hash of options as documented above. def []=(name, options) if options.is_a?(Hash) @@ -523,7 +523,7 @@ module ActionDispatch end end - # Encrypts and Sets the cookie named +name+. The second argument may be the cookie's + # Encrypts and sets the cookie named +name+. The second argument may be the cookie's # value or a hash of options as documented above. def []=(name, options) if options.is_a?(Hash) |