[Python-checkins] cpython (merge 3.3 -> default): doc typo fixes

gregory.p.smith python-checkins at python.org
Sun Sep 30 19:36:30 CEST 2012


http://hg.python.org/cpython/rev/cb2a8aefa0db
changeset:   79338:cb2a8aefa0db
parent:      79336:d10a7c1ac3a7
parent:      79337:4f09f93e86b5
user:        Gregory P. Smith <greg at krypto.org>
date:        Sun Sep 30 10:36:24 2012 -0700
summary:
  doc typo fixes

files:
  Doc/library/gc.rst |  6 +++---
  1 files changed, 3 insertions(+), 3 deletions(-)


diff --git a/Doc/library/gc.rst b/Doc/library/gc.rst
--- a/Doc/library/gc.rst
+++ b/Doc/library/gc.rst
@@ -189,13 +189,13 @@
    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 @@
       "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

-- 
Repository URL: http://hg.python.org/cpython


More information about the Python-checkins mailing list