diff options
author | Dave Powers <djpowers@users.noreply.github.com> | 2015-12-23 16:42:54 -0500 |
---|---|---|
committer | Dave Powers <djpowers@users.noreply.github.com> | 2015-12-23 16:42:54 -0500 |
commit | 34f5704b8561571c0992b4f1dacff30aacb0e249 (patch) | |
tree | f84591fd10ff67e223bc08956a9b42db955f64c6 | |
parent | 3c8b569e15c76f4b09187a9eb3bcd9d9aadb0015 (diff) | |
download | rails-34f5704b8561571c0992b4f1dacff30aacb0e249.tar.gz rails-34f5704b8561571c0992b4f1dacff30aacb0e249.tar.bz2 rails-34f5704b8561571c0992b4f1dacff30aacb0e249.zip |
Improve readability of CacheHelper section
[ci skip]
-rw-r--r-- | guides/source/action_view_overview.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/guides/source/action_view_overview.md b/guides/source/action_view_overview.md index d9037674ca..543937f8e5 100644 --- a/guides/source/action_view_overview.md +++ b/guides/source/action_view_overview.md @@ -599,7 +599,7 @@ This would add something like "Process data files (0.34523)" to the log, which y #### cache -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 news topics, static HTML fragments, and so on. This method takes a block that contains the content you wish to cache. See `ActionController::Caching::Fragments` for more information. +A method for caching fragments of a view rather than an entire action or page. This technique is useful for 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. See `ActionController::Caching::Fragments` for more information. ```erb <% cache do %> |