aboutsummaryrefslogtreecommitdiffstats
path: root/guides/source
diff options
context:
space:
mode:
authorXavier Noria <fxn@hashref.com>2013-01-26 17:36:38 +0100
committerXavier Noria <fxn@hashref.com>2013-01-26 17:36:38 +0100
commit4313461587254fd8e5b5a8ea7dfc9f0230c70ecb (patch)
treef9bb2ba09b9484c7ab701d6d13b88af7874eb297 /guides/source
parent4e5a4cf4b2b52815bcba8fcd4bab52fe5a8f161b (diff)
downloadrails-4313461587254fd8e5b5a8ea7dfc9f0230c70ecb.tar.gz
rails-4313461587254fd8e5b5a8ea7dfc9f0230c70ecb.tar.bz2
rails-4313461587254fd8e5b5a8ea7dfc9f0230c70ecb.zip
generic pass before merging docrails
Diffstat (limited to 'guides/source')
-rw-r--r--guides/source/caching_with_rails.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/guides/source/caching_with_rails.md b/guides/source/caching_with_rails.md
index 7e4253b1ba..e52264f296 100644
--- a/guides/source/caching_with_rails.md
+++ b/guides/source/caching_with_rails.md
@@ -104,7 +104,7 @@ This method generates a cache key that depends on all products and can be used i
All available products:
<% end %>
```
-You can also use an `ActiveRecord` model as the cache key:
+You can also use an Active Record model as the cache key:
```ruby
<% Product.all.each do |p| %>