Skip to content

Commit d702ebe

Browse files
authored
Fix typo (double -> doubly) (#899)
1 parent 0932bf2 commit d702ebe

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

garbage_collector.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -139,11 +139,11 @@ the interpreter create cycles everywhere. Some notable examples:
139139
have internal links to themselves.
140140

141141
To correctly dispose of these objects once they become unreachable, they need to be
142-
identified first. Inside the function that identifies cycles, two double-linked
142+
identified first. Inside the function that identifies cycles, two doubly linked
143143
lists are maintained: one list contains all objects to be scanned, and the other will
144144
contain all objects "tentatively" unreachable.
145145

146-
To understand how the algorithm works, Let’s take the case of a circular linked list
146+
To understand how the algorithm works, let’s take the case of a circular linked list
147147
which has one link referenced by a variable ``A``, and one self-referencing object which
148148
is completely unreachable:
149149

0 commit comments

Comments
 (0)