diff options
author | Balint Erdi <balint.erdi@gmail.com> | 2008-05-27 23:52:00 +0200 |
---|---|---|
committer | Balint Erdi <balint.erdi@gmail.com> | 2008-05-27 23:52:00 +0200 |
commit | bb64660c30705e3864f1ffa5beeafe7d09813ad9 (patch) | |
tree | 1cd30994626de355ddb930104565efa8afb65114 /actionpack/lib/action_controller/caching | |
parent | f8b402c5d81c7baedae9a27eebf83aa947698cc0 (diff) | |
download | rails-bb64660c30705e3864f1ffa5beeafe7d09813ad9.tar.gz rails-bb64660c30705e3864f1ffa5beeafe7d09813ad9.tar.bz2 rails-bb64660c30705e3864f1ffa5beeafe7d09813ad9.zip |
a tiny, one-word change
Signed-off-by: Balint Erdi <balint.erdi@gmail.com>
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 %> |