1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00

fix typo in caching guide [ci skip]

This commit is contained in:
Anton Chuchkalov 2015-07-12 16:11:52 +03:00
parent e0a7e7b0ee
commit 0d7185d138

View file

@ -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 %>
```