diff options
| author | Nik Nyby <nnyby@columbia.edu> | 2015-04-24 16:07:53 -0400 |
|---|---|---|
| committer | Tim Graham <timograham@gmail.com> | 2015-04-24 20:29:25 -0400 |
| commit | 9e647ce86f8485ee281820f850f43680c835cb80 (patch) | |
| tree | 32f9dd9d5221ca8defeacd1c7647d71fe203dd47 | |
| parent | 2a334d79851944d3ba6752b3486e4274d2150c29 (diff) | |
[1.8.x] Added missing comma in LocMemCache example.
Backport of 9d6914da668d9a38537d4c29e3601f06dd830477 from master
| -rw-r--r-- | docs/topics/cache.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/topics/cache.txt b/docs/topics/cache.txt index c4f34729ea..55ec536dff 100644 --- a/docs/topics/cache.txt +++ b/docs/topics/cache.txt @@ -305,7 +305,7 @@ example:: CACHES = { 'default': { 'BACKEND': 'django.core.cache.backends.locmem.LocMemCache', - 'LOCATION': 'unique-snowflake' + 'LOCATION': 'unique-snowflake', } } |
