diff options
author | Vijay Dev <vijaydev.cse@gmail.com> | 2014-09-03 16:14:10 +0000 |
---|---|---|
committer | Vijay Dev <vijaydev.cse@gmail.com> | 2014-09-03 16:14:10 +0000 |
commit | 1fc2e704956a4a931006211fb8a032213a82dea2 (patch) | |
tree | 853526759bdd425c3657d7a23e434c6888e15924 /guides/source/caching_with_rails.md | |
parent | ded17a498aaed63a80fe0bbf4d184aa3e468b023 (diff) | |
parent | 077d28fb6652a94db190aa0239ceaee35404e0ff (diff) | |
download | rails-1fc2e704956a4a931006211fb8a032213a82dea2.tar.gz rails-1fc2e704956a4a931006211fb8a032213a82dea2.tar.bz2 rails-1fc2e704956a4a931006211fb8a032213a82dea2.zip |
Merge branch 'master' of github.com:rails/docrails
Diffstat (limited to 'guides/source/caching_with_rails.md')
-rw-r--r-- | guides/source/caching_with_rails.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/guides/source/caching_with_rails.md b/guides/source/caching_with_rails.md index d0f3a596fe..cbcd053950 100644 --- a/guides/source/caching_with_rails.md +++ b/guides/source/caching_with_rails.md @@ -363,7 +363,7 @@ class ProductsController < ApplicationController end ``` -If you don't have any special response processing and are using the default rendering mechanism (i.e. you're not using respond_to or calling render yourself) then you've got an easy helper in fresh_when: +If you don't have any special response processing and are using the default rendering mechanism (i.e. you're not using `respond_to` or calling render yourself) then you've got an easy helper in `fresh_when`: ```ruby class ProductsController < ApplicationController |