Merge pull request #2597 from dharmatech/patch-2

actionpack/lib/action_controller/base.rb: docs typo
This commit is contained in:
Santiago Pastorino
2011-08-20 14:14:54 -07:00
parent 3655e7bace
commit a7ea1ffb1d

View File

@@ -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.