aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/lib/action_dispatch
diff options
context:
space:
mode:
authorWeston Platter <westonplatter@gmail.com>2013-02-19 22:29:30 -0600
committerWeston Platter <westonplatter@gmail.com>2013-02-19 22:29:30 -0600
commite466a581aa8347d0fffb017d19f06f494509c323 (patch)
tree98658256c63441cf3f6cbaf1d78e33e41e6407a9 /actionpack/lib/action_dispatch
parentab27e9bcdac28087f18c572fcb46681b6e02c84a (diff)
downloadrails-e466a581aa8347d0fffb017d19f06f494509c323.tar.gz
rails-e466a581aa8347d0fffb017d19f06f494509c323.tar.bz2
rails-e466a581aa8347d0fffb017d19f06f494509c323.zip
improve grammar describing ActionDispatch::Cookies::CookieJar#delete
Diffstat (limited to 'actionpack/lib/action_dispatch')
-rw-r--r--actionpack/lib/action_dispatch/middleware/cookies.rb2
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