aboutsummaryrefslogtreecommitdiffstats
path: root/guides/source/caching_with_rails.md
diff options
context:
space:
mode:
authorNicholas Schultz-Møller <nicholassm@gmail.com>2013-01-16 11:44:55 +0100
committerNicholas Schultz-Møller <nicholassm@gmail.com>2013-01-16 11:44:55 +0100
commit728f9c2eed42959d5a3e9202ba80635872738c5e (patch)
treeec17dc4fa5689e0d9df2be3e1c5e46742eb021bb /guides/source/caching_with_rails.md
parent0004ca3a9725b5c89b671d6f5bcfb245a5800af7 (diff)
downloadrails-728f9c2eed42959d5a3e9202ba80635872738c5e.tar.gz
rails-728f9c2eed42959d5a3e9202ba80635872738c5e.tar.bz2
rails-728f9c2eed42959d5a3e9202ba80635872738c5e.zip
Fix formatting error introduced in cc585c8.
Diffstat (limited to 'guides/source/caching_with_rails.md')
-rw-r--r--guides/source/caching_with_rails.md3
1 files changed, 2 insertions, 1 deletions
diff --git a/guides/source/caching_with_rails.md b/guides/source/caching_with_rails.md
index 99150de43a..7e33edda86 100644
--- a/guides/source/caching_with_rails.md
+++ b/guides/source/caching_with_rails.md
@@ -127,9 +127,10 @@ You can also combine the two schemes which is called "Russian Doll Caching":
<% end %>
<% end %>
<% end %>
-It's called "Russian Doll Caching" because it nests multiple fragments. The advantage is that if a single product is updated, all the other inner fragments can be reused when regenerating the outer fragment.
```
+It's called "Russian Doll Caching" because it nests multiple fragments. The advantage is that if a single product is updated, all the other inner fragments can be reused when regenerating the outer fragment.
+
### SQL Caching
Query caching is a Rails feature that caches the result set returned by each query so that if Rails encounters the same query again for that request, it will use the cached result set as opposed to running the query against the database again.