diff options
author | Guo Xiang Tan <tgx_world@hotmail.com> | 2014-07-09 13:19:57 +0800 |
---|---|---|
committer | Guo Xiang Tan <tgx_world@hotmail.com> | 2014-07-09 13:55:42 +0800 |
commit | eeed9d59b2f1a792f1f1760255921e39d10720db (patch) | |
tree | c713e3d2e745aee011ed5fac8aa5e04e02bdc2df /actionpack | |
parent | 7a3192e760e41a3f52418fb88841bbaa1c615a0e (diff) | |
download | rails-eeed9d59b2f1a792f1f1760255921e39d10720db.tar.gz rails-eeed9d59b2f1a792f1f1760255921e39d10720db.tar.bz2 rails-eeed9d59b2f1a792f1f1760255921e39d10720db.zip |
Fix weird comment. [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 22b16b628d..e069840b8e 100644 --- a/actionpack/lib/action_dispatch/middleware/cookies.rb +++ b/actionpack/lib/action_dispatch/middleware/cookies.rb @@ -289,8 +289,8 @@ module ActionDispatch end end - # Sets the cookie named +name+. The second argument may be the very cookie - # value, or a hash of options as documented above. + # 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) options.symbolize_keys! |