diff --git a/src/lib/data_structures/publication_tree.ts b/src/lib/data_structures/publication_tree.ts index 34ab43a..6eaf49a 100644 --- a/src/lib/data_structures/publication_tree.ts +++ b/src/lib/data_structures/publication_tree.ts @@ -337,7 +337,7 @@ export class PublicationTree implements AsyncIterable { } } - // Based on Raymond Chen's tree traversal algorithm. + // Based on Raymond Chen's tree traversal algorithm example. // https://devblogs.microsoft.com/oldnewthing/20200106-00/?p=103300 do { if (await this.#cursor.tryMoveToNextSibling()) { @@ -362,7 +362,7 @@ export class PublicationTree implements AsyncIterable { } } - // Based on Raymond Chen's tree traversal algorithm. + // Based on Raymond Chen's tree traversal algorithm example. // https://devblogs.microsoft.com/oldnewthing/20200106-00/?p=103300 do { if (await this.#cursor.tryMoveToPreviousSibling()) {