aboutsummaryrefslogtreecommitdiffstats
path: root/guides/source/caching_with_rails.md
diff options
context:
space:
mode:
authorAnton Chuchkalov <a2new@yandex.ru>2015-07-12 16:11:52 +0300
committerAnton Chuchkalov <a2new@yandex.ru>2015-07-12 16:11:52 +0300
commit0d7185d13895e778bfde402a01c2fb56a0cfe29b (patch)
treee1d43fdcfc263c037d715e672a0a6c9e700ce196 /guides/source/caching_with_rails.md
parente0a7e7b0ee3204fdc5ef8580450582bd55340d3e (diff)
downloadrails-0d7185d13895e778bfde402a01c2fb56a0cfe29b.tar.gz
rails-0d7185d13895e778bfde402a01c2fb56a0cfe29b.tar.bz2
rails-0d7185d13895e778bfde402a01c2fb56a0cfe29b.zip
fix typo in caching guide [ci skip]
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 b0103c9af4..d6ad8f7db3 100644
--- a/guides/source/caching_with_rails.md
+++ b/guides/source/caching_with_rails.md
@@ -122,7 +122,7 @@ For example, take the following view:
Which in turn renders this view:
```erb
-<% cache game %>
+<% cache game do %>
<%= render game %>
<% end %>
```