aboutsummaryrefslogtreecommitdiffstats
path: root/railties/guides/source/caching_with_rails.textile
diff options
context:
space:
mode:
authorJoseph Pecoraro <joepeck02@gmail.com>2009-05-29 21:09:01 -0400
committerJoseph Pecoraro <joepeck02@gmail.com>2009-05-29 21:09:01 -0400
commit7749e1784c1127cf532d9f41a0331ed266ebec6d (patch)
treecc35591094caa5d896aa7536422b5a3bab089d2f /railties/guides/source/caching_with_rails.textile
parent3aeec3209c04219c3e78cce060e6c0e284e60108 (diff)
downloadrails-7749e1784c1127cf532d9f41a0331ed266ebec6d.tar.gz
rails-7749e1784c1127cf532d9f41a0331ed266ebec6d.tar.bz2
rails-7749e1784c1127cf532d9f41a0331ed266ebec6d.zip
Grammer: 'a' => 'an' where applicable.
Diffstat (limited to 'railties/guides/source/caching_with_rails.textile')
-rw-r--r--railties/guides/source/caching_with_rails.textile2
1 files changed, 1 insertions, 1 deletions
diff --git a/railties/guides/source/caching_with_rails.textile b/railties/guides/source/caching_with_rails.textile
index c4af3a948f..2865bc504a 100644
--- a/railties/guides/source/caching_with_rails.textile
+++ b/railties/guides/source/caching_with_rails.textile
@@ -182,7 +182,7 @@ class ProductSweeper < ActionController::Caching::Sweeper
end
</ruby>
-You may notice that the actual product gets passed to the sweeper, so if we were caching the edit action for each product, we could add a expire method which specifies the page we want to expire:
+You may notice that the actual product gets passed to the sweeper, so if we were caching the edit action for each product, we could add an expire method which specifies the page we want to expire:
<ruby>
expire_action(:controller => 'products', :action => 'edit', :id => product)