diff options
author | Guo Xiang Tan <tgx_world@hotmail.com> | 2015-04-26 00:18:56 +0800 |
---|---|---|
committer | Guo Xiang Tan <tgx_world@hotmail.com> | 2015-04-26 00:18:56 +0800 |
commit | 14d7e058a0eb311a42c3510393f153e56b4b2934 (patch) | |
tree | 695574c78874e8def2d056a0e700580a4f5c39e3 /actionpack | |
parent | e61f4ea31376bc253acb4c9365f858b01ee8e493 (diff) | |
download | rails-14d7e058a0eb311a42c3510393f153e56b4b2934.tar.gz rails-14d7e058a0eb311a42c3510393f153e56b4b2934.tar.bz2 rails-14d7e058a0eb311a42c3510393f153e56b4b2934.zip |
No need to capitalize verbs. [CI SKIP]
Diffstat (limited to 'actionpack')
-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) |