Skip to content

Commit 6670c72

Browse files
vsemozhetbytbevacqua
authored andcommittedAug 31, 2018
ch4: fix typo in "Tree Traversal Using Generators" (#66)
"when we can’t we move" -> "when we can’t move"
1 parent 371a52b commit 6670c72

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎ch04.asciidoc

+1-1
Original file line numberDiff line numberDiff line change
@@ -1376,7 +1376,7 @@ class Node {
13761376
}
13771377
----
13781378

1379-
Trees can be traversed using depth-first search, where we always try to go deeper into the tree structure, and when we can't we move to the next children on the list. In the following tree structure, a depth-first search algorithm would traverse the tree visiting the nodes following the `1, 2, 3, 4, 5, 6, 7, 8, 9, 10` order.
1379+
Trees can be traversed using depth-first search, where we always try to go deeper into the tree structure, and when we can't move to the next children on the list. In the following tree structure, a depth-first search algorithm would traverse the tree visiting the nodes following the `1, 2, 3, 4, 5, 6, 7, 8, 9, 10` order.
13801380

13811381
[source,javascript]
13821382
----

0 commit comments

Comments
 (0)
Please sign in to comment.