summaryrefslogtreecommitdiffstats
path: root/Doc/c-api/refcounting.rst
diff options
context:
space:
mode:
authorBeomsoo Kim <bluewhale8202@gmail.com>2018-12-17 12:57:03 (GMT)
committerMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>2018-12-17 12:57:03 (GMT)
commit05c1b387f1cad3d3d005bb98ad42b1e31eb9e379 (patch)
tree09cd2ee54620205cc3d530fe8c507dffdf2e2c7e /Doc/c-api/refcounting.rst
parent3ab064e80a9be1e6e9c62437fffb92bde9c5e1fb (diff)
downloadcpython-05c1b387f1cad3d3d005bb98ad42b1e31eb9e379.zip
cpython-05c1b387f1cad3d3d005bb98ad42b1e31eb9e379.tar.gz
cpython-05c1b387f1cad3d3d005bb98ad42b1e31eb9e379.tar.bz2
Fixed a few obvious mistakes in c-api docs (GH-11184)
I thought these simple changes doesn't need bpo number(Am I right..?). Please refer to the commit message for detail.
Diffstat (limited to 'Doc/c-api/refcounting.rst')
-rw-r--r--Doc/c-api/refcounting.rst4
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/c-api/refcounting.rst b/Doc/c-api/refcounting.rst
index 4f512ec..225a1fe 100644
--- a/Doc/c-api/refcounting.rst
+++ b/Doc/c-api/refcounting.rst
@@ -58,8 +58,8 @@ objects.
the macro carefully uses a temporary variable and sets the argument to *NULL*
before decrementing its reference count.
- It is a good idea to use this macro whenever decrementing the value of a
- variable that might be traversed during garbage collection.
+ It is a good idea to use this macro whenever decrementing the reference
+ count of an object that might be traversed during garbage collection.
The following functions are for runtime dynamic embedding of Python: