diff options
author | JudeArasu <judearasu@gmail.com> | 2011-07-21 22:57:41 +0530 |
---|---|---|
committer | JudeArasu <judearasu@gmail.com> | 2011-07-21 22:57:41 +0530 |
commit | 9c7a55cf1126216eefb8b56564d4b2fc2363cb87 (patch) | |
tree | 5017c8dd6ec3949d1921a8efba9595317291feb6 /railties/guides | |
parent | 5801f42975bd099f3652a04839081f495722072d (diff) | |
download | rails-9c7a55cf1126216eefb8b56564d4b2fc2363cb87.tar.gz rails-9c7a55cf1126216eefb8b56564d4b2fc2363cb87.tar.bz2 rails-9c7a55cf1126216eefb8b56564d4b2fc2363cb87.zip |
typo change
Diffstat (limited to 'railties/guides')
-rw-r--r-- | railties/guides/source/caching_with_rails.textile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/railties/guides/source/caching_with_rails.textile b/railties/guides/source/caching_with_rails.textile index 252003edd0..1bd409944a 100644 --- a/railties/guides/source/caching_with_rails.textile +++ b/railties/guides/source/caching_with_rails.textile @@ -15,7 +15,7 @@ h3. Basic Caching This is an introduction to the three types of caching techniques that Rails provides by default without the use of any third party plugins. -To start playing with testing you'll want to ensure that +config.action_controller.perform_caching+ is set to +true+ if you're running in development mode. This flag is normally set in the corresponding +config/environments/*.rb+ and caching is disabled by default for development and test, and enabled for production. +To start playing with caching you'll want to ensure that +config.action_controller.perform_caching+ is set to +true+ if you're running in development mode. This flag is normally set in the corresponding +config/environments/*.rb+ and caching is disabled by default for development and test, and enabled for production. <ruby> config.action_controller.perform_caching = true @@ -416,3 +416,4 @@ h3. Changelog * December 27, 2008: Typo fixes * November 23, 2008: Incremental updates with various suggested changes and formatting cleanup * September 15, 2008: Initial version by Aditya Chadha + |