Rafał Pitoń 11 лет назад
Родитель
Сommit
97597cb8a3
1 измененных файлов с 2 добавлено и 2 удалено
  1. 2 2
      docs/thread_store.rst

+ 2 - 2
docs/thread_store.rst

@@ -15,10 +15,10 @@ get
 Get value for key from thread store or default value if key is undefined::
 
     >>> from misago.core import threadstore
-    >>> get('peach')
+    >>> threadstore.get('peach')
     None
 
-    >>> get('peach', 'no peach!')
+    >>> threadstore.get('peach', 'no peach!')
     'no peach!'