From 9d6914da668d9a38537d4c29e3601f06dd830477 Mon Sep 17 00:00:00 2001 From: Nik Nyby Date: Fri, 24 Apr 2015 16:07:53 -0400 Subject: [PATCH] Added missing comma in LocMemCache example. --- docs/topics/cache.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/topics/cache.txt b/docs/topics/cache.txt index 1a21eab164..ee8c30cfef 100644 --- a/docs/topics/cache.txt +++ b/docs/topics/cache.txt @@ -301,7 +301,7 @@ example:: CACHES = { 'default': { 'BACKEND': 'django.core.cache.backends.locmem.LocMemCache', - 'LOCATION': 'unique-snowflake' + 'LOCATION': 'unique-snowflake', } }