summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
Diffstat (limited to 'lib')
-rw-r--r--lib/pool.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/pool.py b/lib/pool.py
index 7ebeff3..030cb68 100644
--- a/lib/pool.py
+++ b/lib/pool.py
@@ -197,9 +197,9 @@ class PersistentConnectionPool(AbstractConnectionPool):
"""A pool that assigns persistent connections to different threads.
Note that this connection pool generates by itself the required keys
- using the current thread id. This means that untill a thread put away
+ using the current thread id. This means that until a thread puts away
a connection it will always get the same connection object by successive
- .getconn() calls. This also means that a thread can't use more than one
+ :meth:`!getconn` calls. This also means that a thread can't use more than one
single connection from the pool.
"""