summaryrefslogtreecommitdiffstats
path: root/Doc
diff options
context:
space:
mode:
authorGregory P. Smith <greg@krypto.org>2012-09-30 17:36:24 (GMT)
committerGregory P. Smith <greg@krypto.org>2012-09-30 17:36:24 (GMT)
commit63d36cbb142b4113533b14b36621a46bcc25d93e (patch)
tree2be7325260628ab251909307a14b820f87a9e9e9 /Doc
parentca42f00657d7b8920a7286302ca5b66b0a6d77b3 (diff)
parent89bbe68195536c1652bc41986a48778c54440815 (diff)
downloadcpython-63d36cbb142b4113533b14b36621a46bcc25d93e.zip
cpython-63d36cbb142b4113533b14b36621a46bcc25d93e.tar.gz
cpython-63d36cbb142b4113533b14b36621a46bcc25d93e.tar.bz2
doc typo fixes
Diffstat (limited to 'Doc')
-rw-r--r--Doc/library/gc.rst6
1 files changed, 3 insertions, 3 deletions
diff --git a/Doc/library/gc.rst b/Doc/library/gc.rst
index 3d76411..41bda1e 100644
--- a/Doc/library/gc.rst
+++ b/Doc/library/gc.rst
@@ -189,13 +189,13 @@ values but should not rebind them):
after collection. The callbacks will be called with two arguments,
*phase* and *info*.
- *phase* can one of two values:
+ *phase* can be one of two values:
"start": The garbage collection is about to start.
"stop": The garbage collection has finished.
- *info* provides more information for the callback. The following
+ *info* is a dict providing more information for the callback. The following
keys are currently defined:
"generation": The oldest generation being collected.
@@ -203,7 +203,7 @@ values but should not rebind them):
"collected": When *phase* is "stop", the number of objects
successfully collected.
- "uncollectable": when *phase* is "stop", the number of objects
+ "uncollectable": When *phase* is "stop", the number of objects
that could not be collected and were put in :data:`garbage`.
Applications can add their own callbacks to this list. The primary