Browse Source

Lets make this one last.

Rafał Pitoń 11 years ago
parent
commit
97597cb8a3
1 changed files with 2 additions and 2 deletions
  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::
 Get value for key from thread store or default value if key is undefined::
 
 
     >>> from misago.core import threadstore
     >>> from misago.core import threadstore
-    >>> get('peach')
+    >>> threadstore.get('peach')
     None
     None
 
 
-    >>> get('peach', 'no peach!')
+    >>> threadstore.get('peach', 'no peach!')
     'no peach!'
     'no peach!'