Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 89bbe68

Browse files
committed
doc typo fixes
1 parent 9a6ada8 commit 89bbe68

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

Doc/library/gc.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -189,21 +189,21 @@ values but should not rebind them):
189189
after collection. The callbacks will be called with two arguments,
190190
*phase* and *info*.
191191

192-
*phase* can one of two values:
192+
*phase* can be one of two values:
193193

194194
"start": The garbage collection is about to start.
195195

196196
"stop": The garbage collection has finished.
197197

198-
*info* provides more information for the callback. The following
198+
*info* is a dict providing more information for the callback. The following
199199
keys are currently defined:
200200

201201
"generation": The oldest generation being collected.
202202

203203
"collected": When *phase* is "stop", the number of objects
204204
successfully collected.
205205

206-
"uncollectable": when *phase* is "stop", the number of objects
206+
"uncollectable": When *phase* is "stop", the number of objects
207207
that could not be collected and were put in :data:`garbage`.
208208

209209
Applications can add their own callbacks to this list. The primary

0 commit comments

Comments
 (0)