浏览代码

Added missing comma in LocMemCache example.

Nik Nyby 10 年之前
父节点
当前提交
9d6914da66
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      docs/topics/cache.txt

+ 1 - 1
docs/topics/cache.txt

@@ -301,7 +301,7 @@ example::
     CACHES = {
         'default': {
             'BACKEND': 'django.core.cache.backends.locmem.LocMemCache',
-            'LOCATION': 'unique-snowflake'
+            'LOCATION': 'unique-snowflake',
         }
     }