diff options
author | Zachary Scott <zachary@zacharyscott.net> | 2014-02-23 20:19:15 +1100 |
---|---|---|
committer | Zachary Scott <zachary@zacharyscott.net> | 2014-02-23 20:24:23 +1100 |
commit | f302079d97b5c139b56f1acd2d516be52351c4fe (patch) | |
tree | fd38853bd92e8f63d86d39f3051ea88526880b68 /actionpack/lib | |
parent | b91d76131b2dd5fbd4d73f6e1e925c9e6f9880f6 (diff) | |
download | rails-f302079d97b5c139b56f1acd2d516be52351c4fe.tar.gz rails-f302079d97b5c139b56f1acd2d516be52351c4fe.tar.bz2 rails-f302079d97b5c139b56f1acd2d516be52351c4fe.zip |
:scissors:
This commit also addresses rails/docrails#169 and rails/rails#14159
Diffstat (limited to 'actionpack/lib')
-rw-r--r-- | actionpack/lib/action_dispatch/middleware/cookies.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/actionpack/lib/action_dispatch/middleware/cookies.rb b/actionpack/lib/action_dispatch/middleware/cookies.rb index 18e64704f6..8b05cd6e11 100644 --- a/actionpack/lib/action_dispatch/middleware/cookies.rb +++ b/actionpack/lib/action_dispatch/middleware/cookies.rb @@ -74,7 +74,7 @@ module ActionDispatch # # domain: nil # Does not sets cookie domain. (default) # domain: :all # Allow the cookie for the top most level - # domain and subdomains. + # # domain and subdomains. # # * <tt>:expires</tt> - The time at which this cookie expires, as a \Time object. # * <tt>:secure</tt> - Whether this cookie is only transmitted to HTTPS servers. |