aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack
diff options
context:
space:
mode:
authorWeston Platter <weston.platter@novu.com>2013-02-19 15:39:38 -0600
committerWeston Platter <weston.platter@novu.com>2013-02-19 15:39:38 -0600
commitab27e9bcdac28087f18c572fcb46681b6e02c84a (patch)
treebb5a46e6ae8415fd9643066cad109c2d07cd7477 /actionpack
parent336dae02cd001b0bea9e106e129e89931cce29e6 (diff)
downloadrails-ab27e9bcdac28087f18c572fcb46681b6e02c84a.tar.gz
rails-ab27e9bcdac28087f18c572fcb46681b6e02c84a.tar.bz2
rails-ab27e9bcdac28087f18c572fcb46681b6e02c84a.zip
improve grammar describing ActionDispatch::Cookies::CookieJar#delete
Diffstat (limited to 'actionpack')
-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 fff26bd1b2..6d59af2a7e 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 setting its expiration date into the past. Like <tt>[]=</tt>, you can pass in
+ # and sets its 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