diff options
author | Emmanuel Arias <emmanuelarias30@gmail.com> | 2019-03-07 02:16:41 -0300 |
---|---|---|
committer | Serhiy Storchaka <storchaka@gmail.com> | 2019-03-07 07:16:41 +0200 |
commit | ecc161d1209bf6d21f0fd6bef28476eda7cdaf79 (patch) | |
tree | fb02de947277e69a8c65766a09cdbd81f3e3845a /Doc/c-api/objbuffer.rst | |
parent | dc078947a5033a048d804e244e847b5844734439 (diff) | |
download | cpython-git-ecc161d1209bf6d21f0fd6bef28476eda7cdaf79.tar.gz |
bpo-36185: Fix typo in Doc/c-api/objbuffer.rst. (GH-12204)
Diffstat (limited to 'Doc/c-api/objbuffer.rst')
-rw-r--r-- | Doc/c-api/objbuffer.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/c-api/objbuffer.rst b/Doc/c-api/objbuffer.rst index 9ad7c571c4..3572564b13 100644 --- a/Doc/c-api/objbuffer.rst +++ b/Doc/c-api/objbuffer.rst @@ -42,7 +42,7 @@ an object, and :c:func:`PyBuffer_Release` when the buffer view can be released. Otherwise returns ``0``. This function always succeeds. Note that this function tries to get and release a buffer, and exceptions - which occur while calling correspoding functions will get suppressed. + which occur while calling corresponding functions will get suppressed. To get error reporting use :c:func:`PyObject_GetBuffer()` instead. |