diff options
-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) |