summaryrefslogtreecommitdiff
path: root/docs/getting_started.rst
diff options
context:
space:
mode:
authorHervé Beraud <hberaud@redhat.com>2021-07-15 15:22:32 +0200
committerGitHub <noreply@github.com>2021-07-15 09:22:32 -0400
commitb967fe86f1433ae355a0fdd2ad33224ca1a2c5d8 (patch)
treea422373daa9eeafa3027edc4506fcf22f3df301e /docs/getting_started.rst
parentf56840959ba38138c03c35dd180915b2519b5b3b (diff)
downloadpymemcache-b967fe86f1433ae355a0fdd2ad33224ca1a2c5d8.tar.gz
Fix typo in doc (#342)
Diffstat (limited to 'docs/getting_started.rst')
-rw-r--r--docs/getting_started.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/getting_started.rst b/docs/getting_started.rst
index 962735a..ccfa75a 100644
--- a/docs/getting_started.rst
+++ b/docs/getting_started.rst
@@ -82,7 +82,7 @@ Using the built-in retrying mechanism
The library comes with retry mechanisms that can be used to wrap all kind of
pymemcache clients. The wrapper allow you to define the exceptions that you want
to handle with retries, which exceptions to exclude, how many attempts to make
-and how long to wait between attemots.
+and how long to wait between attempts.
The ``RetryingClient`` wraps around any of the other included clients and will
have the same methods. For this example we're just using the base ``Client``.