diff options
author | Vijay Dev <vijaydev.cse@gmail.com> | 2011-06-10 17:27:46 +0530 |
---|---|---|
committer | Vijay Dev <vijaydev.cse@gmail.com> | 2011-06-11 19:20:54 +0530 |
commit | 53a9849551f64f0c60fe10a2037268eea9b46341 (patch) | |
tree | 4b7f8f18eb979594451168adfe3ce03d74f0861b /railties | |
parent | 3c06d25cf948bd7325454b1d4a843b5178221494 (diff) | |
download | rails-53a9849551f64f0c60fe10a2037268eea9b46341.tar.gz rails-53a9849551f64f0c60fe10a2037268eea9b46341.tar.bz2 rails-53a9849551f64f0c60fe10a2037268eea9b46341.zip |
add missing end in example
Diffstat (limited to 'railties')
-rw-r--r-- | railties/guides/source/caching_with_rails.textile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/railties/guides/source/caching_with_rails.textile b/railties/guides/source/caching_with_rails.textile index f058dce42b..252003edd0 100644 --- a/railties/guides/source/caching_with_rails.textile +++ b/railties/guides/source/caching_with_rails.textile @@ -382,6 +382,7 @@ class ProductsController < ApplicationController # anything. The default render checks for this using the parameters # used in the previous call to stale? and will automatically send a # :not_modified. So that's it, you're done. + end end </ruby> |