aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/lib/action_dispatch
diff options
context:
space:
mode:
authorlambda_ <superhappyfuntime@me.com>2013-01-03 17:33:00 -0500
committerlambda_ <superhappyfuntime@me.com>2013-01-03 17:33:00 -0500
commit8370e50d85bf1b73580aa45c27a8bb58de4d90b1 (patch)
tree7ca78e41368c7359ba868c3865d7f5ce8cec9725 /actionpack/lib/action_dispatch
parent02e422b64f93a907d806ff45d202983e14c6f39b (diff)
downloadrails-8370e50d85bf1b73580aa45c27a8bb58de4d90b1.tar.gz
rails-8370e50d85bf1b73580aa45c27a8bb58de4d90b1.tar.bz2
rails-8370e50d85bf1b73580aa45c27a8bb58de4d90b1.zip
Change `Example for` to `Example of`
Diffstat (limited to 'actionpack/lib/action_dispatch')
-rw-r--r--actionpack/lib/action_dispatch/middleware/cookies.rb4
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 121a11c8e1..6ecbb03784 100644
--- a/actionpack/lib/action_dispatch/middleware/cookies.rb
+++ b/actionpack/lib/action_dispatch/middleware/cookies.rb
@@ -15,7 +15,7 @@ module ActionDispatch
# being written will be sent out with the response. Reading a cookie does not get
# the cookie object itself back, just the value it holds.
#
- # Examples for writing:
+ # Examples of writing:
#
# # Sets a simple session cookie.
# # This cookie will be deleted when the user's browser is closed.
@@ -38,7 +38,7 @@ module ActionDispatch
# # You can also chain these methods:
# cookies.permanent.signed[:login] = "XJ-122"
#
- # Examples for reading:
+ # Examples of reading:
#
# cookies[:user_name] # => "david"
# cookies.size # => 2