Skip to content

Commit e7987e4

Browse files
authored
Apply suggestions from code review
1 parent 865e9e0 commit e7987e4

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

InternalDocs/garbage_collector.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -286,7 +286,7 @@ object, the GC does not process it twice.
286286

287287
Notice that an object that was marked as "tentatively unreachable" and was later
288288
moved back to the reachable list will be visited again by the garbage collector
289-
as now all the references that object has need to be processed as well. This
289+
as now all the references that the object has need to be processed as well. This
290290
process is really a breadth first search over the object graph. Once all the objects
291291
are scanned, the GC knows that all container objects in the tentatively unreachable
292292
list are really unreachable and can thus be garbage collected.

Lib/idlelib/debugger.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
"""Debug user code with a GUI interface to a subclass of bdb.Bdb.
22
3-
The Idb and Debugger gui instances each need a reference to each
3+
The Idb instance 'idb' and Debugger instance 'gui' need references to each
44
other or to an rpc proxy for each other.
55
66
If IDLE is started with '-n', so that user code and idb both run in the

0 commit comments

Comments
 (0)