aboutsummaryrefslogtreecommitdiffstats
path: root/guides/source/caching_with_rails.md
diff options
context:
space:
mode:
Diffstat (limited to 'guides/source/caching_with_rails.md')
-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| %>