summaryrefslogtreecommitdiff
path: root/docs/getting_started.rst
diff options
context:
space:
mode:
authorJon Parise <jon@pinterest.com>2020-05-19 15:03:22 -0700
committerGitHub <noreply@github.com>2020-05-19 15:03:22 -0700
commit4b82e4824e43df132d61ed1d12c091323f7c5e7b (patch)
tree71d75234c19935261da21d62dc9116c60dfd48f8 /docs/getting_started.rst
parent0275e2d9ca2c79de06c92eeb4a572ca90994cff1 (diff)
downloadpymemcache-4b82e4824e43df132d61ed1d12c091323f7c5e7b.tar.gz
Fix documentation references (#286)
Diffstat (limited to 'docs/getting_started.rst')
-rw-r--r--docs/getting_started.rst8
1 files changed, 4 insertions, 4 deletions
diff --git a/docs/getting_started.rst b/docs/getting_started.rst
index dc9ea26..5e2864c 100644
--- a/docs/getting_started.rst
+++ b/docs/getting_started.rst
@@ -26,10 +26,10 @@ passing the socket's path to the client's ``server`` parameter:
Using a client pool
-------------------
-:class:`pymemcache.base.PooledClient`: is a thread-safe client pool that
-provides the same API as :class:`pymemcache.base.Client`:. It's useful in
-for cases when you want to maintain a pool of already-connected clients
-for improved performance.
+:class:`pymemcache.client.base.PooledClient` is a thread-safe client pool
+that provides the same API as :class:`pymemcache.client.base.Client`. It's
+useful in for cases when you want to maintain a pool of already-connected
+clients for improved performance.
.. code-block:: python