aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/lib/action_view/helpers/cache_helper.rb
diff options
context:
space:
mode:
authorRizwan Reza <rizwanreza@gmail.com>2010-12-23 16:13:36 +0330
committerRizwan Reza <rizwanreza@gmail.com>2010-12-23 16:13:36 +0330
commit0997d5a12dcefe5df4089ddd8b305318abc0a9d4 (patch)
treed4962b2721421e015fbcc69ec3cf29f896300da7 /actionpack/lib/action_view/helpers/cache_helper.rb
parent5fb2f0c07f0e30adc2b3a6d2a1fab896ee9739b8 (diff)
downloadrails-0997d5a12dcefe5df4089ddd8b305318abc0a9d4.tar.gz
rails-0997d5a12dcefe5df4089ddd8b305318abc0a9d4.tar.bz2
rails-0997d5a12dcefe5df4089ddd8b305318abc0a9d4.zip
More minor edits.
Diffstat (limited to 'actionpack/lib/action_view/helpers/cache_helper.rb')
-rw-r--r--actionpack/lib/action_view/helpers/cache_helper.rb10
1 files changed, 5 insertions, 5 deletions
diff --git a/actionpack/lib/action_view/helpers/cache_helper.rb b/actionpack/lib/action_view/helpers/cache_helper.rb
index f41a16a61e..30e6c078b1 100644
--- a/actionpack/lib/action_view/helpers/cache_helper.rb
+++ b/actionpack/lib/action_view/helpers/cache_helper.rb
@@ -2,11 +2,11 @@ module ActionView
# = Action View Cache Helper
module Helpers
module CacheHelper
- # This helper exposes a method for caching view fragments caching
- # fragments of a view rather than an entire action or page. This
- # technique is useful caching pieces like menus, lists of news
- # topics, static HTML fragments, and so on. This method takes a
- # block that contains the content you wish to cache.
+ # This helper exposes a method for caching fragments of a view
+ # rather than an entire action or page. This technique is useful
+ # caching pieces like menus, lists of newstopics, static HTML
+ # fragments, and so on. This method takes a block that contains
+ # the content you wish to cache.
#
# See ActionController::Caching::Fragments for usage instructions.
#