aboutsummaryrefslogtreecommitdiffstats
path: root/railties/guides
diff options
context:
space:
mode:
authorJames Miller <james@jkmillertech.com>2009-02-06 07:59:02 -0800
committerJames Miller <james@jkmillertech.com>2009-02-06 07:59:02 -0800
commit1a8226977f515331d4bddc346a4f0c4583f67e6c (patch)
treec64e658aefa7e18e5fbd267d1f0ded9a573eb8ee /railties/guides
parentbf43166b925d0a39a1fed2a8b5ceb6443ed8c75e (diff)
downloadrails-1a8226977f515331d4bddc346a4f0c4583f67e6c.tar.gz
rails-1a8226977f515331d4bddc346a4f0c4583f67e6c.tar.bz2
rails-1a8226977f515331d4bddc346a4f0c4583f67e6c.zip
Fix spelling errors in caching guide
Diffstat (limited to 'railties/guides')
-rw-r--r--railties/guides/source/caching_with_rails.textile4
1 files changed, 2 insertions, 2 deletions
diff --git a/railties/guides/source/caching_with_rails.textile b/railties/guides/source/caching_with_rails.textile
index 940466ecb3..f4fb8ec348 100644
--- a/railties/guides/source/caching_with_rails.textile
+++ b/railties/guides/source/caching_with_rails.textile
@@ -55,13 +55,13 @@ want to put other static html in /public, but changing this will require web
server reconfiguration to let the web server know where to serve the cached
files from.
-The Page Caching mechanism will automatically add a +.html+ exxtension to
+The Page Caching mechanism will automatically add a +.html+ extension to
requests for pages that do not have an extension to make it easy for the
webserver to find those pages and this can be configured by changing the
configuration setting +config.action_controller.page_cache_extension+.
In order to expire this page when a new product is added we could extend our
-example controler like this:
+example controller like this:
<ruby>
class ProductsController < ActionController