aboutsummaryrefslogtreecommitdiffstats
path: root/railties/doc/guides/source/caching_with_rails.txt
diff options
context:
space:
mode:
authorYehuda Katz <wycats@gmail.com>2009-01-30 10:53:14 -0800
committerYehuda Katz <wycats@gmail.com>2009-01-30 10:53:19 -0800
commitda10673e32718d6a0619bd0f4b4d3d796db86a1a (patch)
tree7bdb7868b0be65daec06ba729f68deccfe61a8bb /railties/doc/guides/source/caching_with_rails.txt
parentb8fadd708b9850a77e1f64038763fffcff502499 (diff)
parented0e5640879fd42c00fc5900e0355a0ea1dcf2ad (diff)
downloadrails-da10673e32718d6a0619bd0f4b4d3d796db86a1a.tar.gz
rails-da10673e32718d6a0619bd0f4b4d3d796db86a1a.tar.bz2
rails-da10673e32718d6a0619bd0f4b4d3d796db86a1a.zip
Sync 'rails/rails/master'
Diffstat (limited to 'railties/doc/guides/source/caching_with_rails.txt')
-rw-r--r--railties/doc/guides/source/caching_with_rails.txt8
1 files changed, 4 insertions, 4 deletions
diff --git a/railties/doc/guides/source/caching_with_rails.txt b/railties/doc/guides/source/caching_with_rails.txt
index 16dac19e08..6da67ed481 100644
--- a/railties/doc/guides/source/caching_with_rails.txt
+++ b/railties/doc/guides/source/caching_with_rails.txt
@@ -214,19 +214,19 @@ sweeper such as the following:
[source, ruby]
-----------------------------------------------------
class StoreSweeper < ActionController::Caching::Sweeper
- observe Product # This sweeper is going to keep an eye on the Post model
+ observe Product # This sweeper is going to keep an eye on the Product model
- # If our sweeper detects that a Post was created call this
+ # If our sweeper detects that a Product was created call this
def after_create(product)
expire_cache_for(product)
end
- # If our sweeper detects that a Post was updated call this
+ # If our sweeper detects that a Product was updated call this
def after_update(product)
expire_cache_for(product)
end
- # If our sweeper detects that a Post was deleted call this
+ # If our sweeper detects that a Product was deleted call this
def after_destroy(product)
expire_cache_for(product)
end