Skip to content

Commit

Permalink
Merge pull request #2597 from dharmatech/patch-2
Browse files Browse the repository at this point in the history
actionpack/lib/action_controller/base.rb: docs typo
  • Loading branch information
spastorino committed Aug 20, 2011
1 parent 1d354fa commit 52e1e45
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion actionpack/lib/action_controller/base.rb
Expand Up @@ -63,7 +63,7 @@ module ActionController
# #
# == Sessions # == 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 # 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 # 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. # they could be changed unknowingly. It's usually too much work to keep it all synchronized -- something databases already excel at.
Expand Down

0 comments on commit 52e1e45

Please sign in to comment.