diff options
author | Weston Platter <westonplatter@gmail.com> | 2013-02-19 22:29:30 -0600 |
---|---|---|
committer | Weston Platter <westonplatter@gmail.com> | 2013-02-19 22:29:30 -0600 |
commit | e466a581aa8347d0fffb017d19f06f494509c323 (patch) | |
tree | 98658256c63441cf3f6cbaf1d78e33e41e6407a9 /actionpack/lib | |
parent | ab27e9bcdac28087f18c572fcb46681b6e02c84a (diff) | |
download | rails-e466a581aa8347d0fffb017d19f06f494509c323.tar.gz rails-e466a581aa8347d0fffb017d19f06f494509c323.tar.bz2 rails-e466a581aa8347d0fffb017d19f06f494509c323.zip |
improve grammar describing ActionDispatch::Cookies::CookieJar#delete
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 6d59af2a7e..04cf9d44e1 100644 --- a/actionpack/lib/action_dispatch/middleware/cookies.rb +++ b/actionpack/lib/action_dispatch/middleware/cookies.rb @@ -205,7 +205,7 @@ module ActionDispatch end # Removes the cookie on the client machine by setting the value to an empty string - # and sets its expiration date in the past. Like <tt>[]=</tt>, you can pass in + # and the expiration date in the past. Like <tt>[]=</tt>, you can pass in # an options hash to delete cookies with extra data such as a <tt>:path</tt>. def delete(key, options = {}) return unless @cookies.has_key? key.to_s |