diff options
author | R David Murray <rdmurray@bitdance.com> | 2015-04-14 20:42:08 (GMT) |
---|---|---|
committer | R David Murray <rdmurray@bitdance.com> | 2015-04-14 20:42:08 (GMT) |
commit | 5be7f1513d3e48ec03b0b95aa33f25991f12308e (patch) | |
tree | 7c51075c3c4567755dd48fe7e98cd9c3fb5f8016 /Doc/c-api | |
parent | 0f2f3bc9db70a1faae520913041fc9c9e033eb0b (diff) | |
download | cpython-5be7f1513d3e48ec03b0b95aa33f25991f12308e.zip cpython-5be7f1513d3e48ec03b0b95aa33f25991f12308e.tar.gz cpython-5be7f1513d3e48ec03b0b95aa33f25991f12308e.tar.bz2 |
#23957: fix typo.
Diffstat (limited to 'Doc/c-api')
-rw-r--r-- | Doc/c-api/memory.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/c-api/memory.rst b/Doc/c-api/memory.rst index a82e1c2..7908622 100644 --- a/Doc/c-api/memory.rst +++ b/Doc/c-api/memory.rst @@ -272,7 +272,7 @@ Customize Memory Allocators :c:func:`PyObject_Free` Newly allocated memory is filled with the byte ``0xCB``, freed memory is - filled with the byte ``0xDB``. Additionnal checks: + filled with the byte ``0xDB``. Additional checks: - detect API violations, ex: :c:func:`PyObject_Free` called on a buffer allocated by :c:func:`PyMem_Malloc` |