aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack
diff options
context:
space:
mode:
authordharmatech <wayo.cavazos@gmail.com>2011-08-20 00:17:44 -0500
committerdharmatech <wayo.cavazos@gmail.com>2011-08-20 00:17:44 -0500
commitdfd03fdbd32d25ef0f70e40ab7cb3794b1ffe0c0 (patch)
treefa7d07d92b12fcd3d0f3e02ba989b3a0b2d7dfa7 /actionpack
parent8bd76aa50ec5dc5da3c398a0fd5dc971f64d8d68 (diff)
downloadrails-dfd03fdbd32d25ef0f70e40ab7cb3794b1ffe0c0.tar.gz
rails-dfd03fdbd32d25ef0f70e40ab7cb3794b1ffe0c0.tar.bz2
rails-dfd03fdbd32d25ef0f70e40ab7cb3794b1ffe0c0.zip
actionpack/lib/action_controller/base.rb: docs typo
Diffstat (limited to 'actionpack')
-rw-r--r--actionpack/lib/action_controller/base.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/actionpack/lib/action_controller/base.rb b/actionpack/lib/action_controller/base.rb
index ce56d8bc71..da93c988c4 100644
--- a/actionpack/lib/action_controller/base.rb
+++ b/actionpack/lib/action_controller/base.rb
@@ -63,7 +63,7 @@ module ActionController
#
# == Sessions
#
- # Sessions allows you to store objects in between requests. This is useful for objects that are not yet ready to be persisted,
+ # Sessions allow you to store objects in between requests. This is useful for objects that are not yet ready to be persisted,
# such as a Signup object constructed in a multi-paged process, or objects that don't change much and are needed all the time, such
# as a User object for a system that requires login. The session should not be used, however, as a cache for objects where it's likely
# they could be changed unknowingly. It's usually too much work to keep it all synchronized -- something databases already excel at.