summaryrefslogtreecommitdiff
path: root/docs/topics/cache.txt
diff options
context:
space:
mode:
authorNik Nyby <nnyby@columbia.edu>2015-04-24 16:07:53 -0400
committerTim Graham <timograham@gmail.com>2015-04-24 20:29:29 -0400
commitbb40d9820ffcb5c4cb0bc3c5549fa284a774c250 (patch)
tree7b4f0c569ac7752c1e58cec9853eac1ec9565ab2 /docs/topics/cache.txt
parent0b7d737d9fbffde9aa0f75e7a707f5398cb2ddba (diff)
[1.7.x] Added missing comma in LocMemCache example.
Backport of 9d6914da668d9a38537d4c29e3601f06dd830477 from master
Diffstat (limited to 'docs/topics/cache.txt')
-rw-r--r--docs/topics/cache.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/topics/cache.txt b/docs/topics/cache.txt
index 956fa438dc..d364be205d 100644
--- a/docs/topics/cache.txt
+++ b/docs/topics/cache.txt
@@ -304,7 +304,7 @@ example::
CACHES = {
'default': {
'BACKEND': 'django.core.cache.backends.locmem.LocMemCache',
- 'LOCATION': 'unique-snowflake'
+ 'LOCATION': 'unique-snowflake',
}
}