diff options
author | Jeremy McAnally <jeremymcanally@jeremy-mcanallys-macbook.local> | 2008-05-29 13:30:37 -0400 |
---|---|---|
committer | Jeremy McAnally <jeremymcanally@jeremy-mcanallys-macbook.local> | 2008-05-29 13:30:37 -0400 |
commit | 281a428f11c9c086a3ab33e68bdd41c928f95e53 (patch) | |
tree | febdee4a107ac0a26b096ca86695f2991acceb6a /actionpack/lib/action_controller/caching | |
parent | d2e2c02879110602909f31a804e4eb4a6f3419b5 (diff) | |
parent | 305eb5b031b1f2489e9963368358b7e9a16c0d00 (diff) | |
download | rails-281a428f11c9c086a3ab33e68bdd41c928f95e53.tar.gz rails-281a428f11c9c086a3ab33e68bdd41c928f95e53.tar.bz2 rails-281a428f11c9c086a3ab33e68bdd41c928f95e53.zip |
Merge branch 'master' of git@github.com:lifo/docrails
Diffstat (limited to 'actionpack/lib/action_controller/caching')
-rw-r--r-- | actionpack/lib/action_controller/caching/fragments.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/actionpack/lib/action_controller/caching/fragments.rb b/actionpack/lib/action_controller/caching/fragments.rb index e4f5de44ab..578e031a17 100644 --- a/actionpack/lib/action_controller/caching/fragments.rb +++ b/actionpack/lib/action_controller/caching/fragments.rb @@ -2,7 +2,7 @@ module ActionController #:nodoc: module Caching # Fragment caching is used for caching various blocks within templates without caching the entire action as a whole. This is useful when # certain elements of an action change frequently or depend on complicated state while other parts rarely change or can be shared amongst multiple - # parties. The caching is doing using the cache helper available in the Action View. A template with caching might look something like: + # parties. The caching is done using the cache helper available in the Action View. A template with caching might look something like: # # <b>Hello <%= @name %></b> # <% cache do %> |