瀏覽代碼

Merge pull request #579 from Moini/patch-1

Add commas indicating tuple to example
Justin Mayer 9 年之前
父節點
當前提交
8ff5d59607
共有 1 個文件被更改,包括 2 次插入2 次删除
  1. 2 2
      pelican_comment_system/doc/avatars.md

+ 2 - 2
pelican_comment_system/doc/avatars.md

@@ -17,8 +17,8 @@ The `value` of the dictionary is the path to the specific avatar.
 ##### Example
 ```python
 PELICAN_COMMENT_SYSTEM_AUTHORS = {
-	('John'): "images/authors/john.png",
-	('Tom'): "images/authors/tom.png",
+	('John',): "images/authors/john.png",
+	('Tom',): "images/authors/tom.png",
 }
 ```