summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorda-woods <dw-git@d-woods.co.uk>2022-04-10 19:03:29 +0100
committerStefan Behnel <stefan_ml@behnel.de>2022-04-12 20:51:34 +0200
commit35ab49071448a857565573a16af76dfed298a734 (patch)
tree89b9cf1aa126639c42ea4a8fc038d3bb93121310
parent5db0e66d5bb26f6cf4030b4f8a6a5c6304a7b508 (diff)
downloadcython-35ab49071448a857565573a16af76dfed298a734.tar.gz
docs: fix code quoting error (GH-4729)
-rw-r--r--docs/src/userguide/extension_types.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/src/userguide/extension_types.rst b/docs/src/userguide/extension_types.rst
index 63b407871..6ad953ac9 100644
--- a/docs/src/userguide/extension_types.rst
+++ b/docs/src/userguide/extension_types.rst
@@ -675,7 +675,7 @@ cannot be pickled) decorate the class with ``@cython.auto_pickle(True)``.
One can also annotate with ``@cython.auto_pickle(False)`` to get the old
behavior of not generating a ``__reduce__`` method in any case.
-Manually implementing a ``__reduce__`` or `__reduce_ex__`` method will also
+Manually implementing a ``__reduce__`` or ``__reduce_ex__`` method will also
disable this auto-generation and can be used to support pickling of more
complicated types.