diff options
author | Anton Chuchkalov <a2new@yandex.ru> | 2015-07-12 16:11:52 +0300 |
---|---|---|
committer | Anton Chuchkalov <a2new@yandex.ru> | 2015-07-12 16:11:52 +0300 |
commit | 0d7185d13895e778bfde402a01c2fb56a0cfe29b (patch) | |
tree | e1d43fdcfc263c037d715e672a0a6c9e700ce196 /guides | |
parent | e0a7e7b0ee3204fdc5ef8580450582bd55340d3e (diff) | |
download | rails-0d7185d13895e778bfde402a01c2fb56a0cfe29b.tar.gz rails-0d7185d13895e778bfde402a01c2fb56a0cfe29b.tar.bz2 rails-0d7185d13895e778bfde402a01c2fb56a0cfe29b.zip |
fix typo in caching guide [ci skip]
Diffstat (limited to 'guides')
-rw-r--r-- | guides/source/caching_with_rails.md | 2 |
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 %> ``` |