diff options
author | eparreno <emili@eparreno.com> | 2010-05-12 23:15:07 +0200 |
---|---|---|
committer | eparreno <emili@eparreno.com> | 2010-05-12 23:15:07 +0200 |
commit | 79e5e79b0d3f6104afd3a3a1065f248f36e44e0f (patch) | |
tree | 5220d40a168aefe20dbeec899f1434c25564ef4b /railties/guides/source/caching_with_rails.textile | |
parent | bcccf924afbff39f1fa61432bcf2285dbd722569 (diff) | |
download | rails-79e5e79b0d3f6104afd3a3a1065f248f36e44e0f.tar.gz rails-79e5e79b0d3f6104afd3a3a1065f248f36e44e0f.tar.bz2 rails-79e5e79b0d3f6104afd3a3a1065f248f36e44e0f.zip |
fix wrong action name [#134]
Diffstat (limited to 'railties/guides/source/caching_with_rails.textile')
-rw-r--r-- | railties/guides/source/caching_with_rails.textile | 2 |
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 e27c2a6dc6..6dee4b9c61 100644 --- a/railties/guides/source/caching_with_rails.textile +++ b/railties/guides/source/caching_with_rails.textile @@ -57,7 +57,7 @@ class ProductsController < ActionController end def create - expire_page :action => :list + expire_page :action => :index end end |