aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack
diff options
context:
space:
mode:
authorMarcel Molina <marcel@vernix.org>2006-08-09 15:30:43 +0000
committerMarcel Molina <marcel@vernix.org>2006-08-09 15:30:43 +0000
commit9b204641c002317d097261c753490cced3dec40c (patch)
tree3d4a7df5d3334de98c28588992b9fa70d63d46a7 /actionpack
parentd3cf2a6689a7c4d7889029cec78d003feb40c85a (diff)
downloadrails-9b204641c002317d097261c753490cced3dec40c.tar.gz
rails-9b204641c002317d097261c753490cced3dec40c.tar.bz2
rails-9b204641c002317d097261c753490cced3dec40c.zip
Fix typo in caching docs.
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@4740 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'actionpack')
-rw-r--r--actionpack/lib/action_controller/caching.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/actionpack/lib/action_controller/caching.rb b/actionpack/lib/action_controller/caching.rb
index 5e1475357e..5461a2eadd 100644
--- a/actionpack/lib/action_controller/caching.rb
+++ b/actionpack/lib/action_controller/caching.rb
@@ -158,7 +158,7 @@ module ActionController #:nodoc:
# "jamis.somewhere.com/lists/" -- which is a helpful way of assisting the subdomain-as-account-key pattern.
#
# Different representations of the same resource, e.g. <tt>http://david.somewhere.com/lists</tt> and <tt>http://david.somewhere.com/lists.xml</tt>
- # are treated like separate requests and so are cached separately. Keep in mine when expiring an action cache that <tt>:action => 'lists'</tt> is not the same
+ # are treated like separate requests and so are cached separately. Keep in mind when expiring an action cache that <tt>:action => 'lists'</tt> is not the same
# as <tt>:action => 'list', :format => :xml</tt>.
module Actions
def self.included(base) #:nodoc: