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.
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 @@
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: