diff --git a/src/data-structures/linked-list/README.zh-CN.md b/src/data-structures/linked-list/README.zh-CN.md index f352b4fa..81f036ab 100644 --- a/src/data-structures/linked-list/README.zh-CN.md +++ b/src/data-structures/linked-list/README.zh-CN.md @@ -101,7 +101,7 @@ Traverse(head) Pre: head is the head node in the list Post: the items in the list have been traversed n ← head - while n != 0 + while n != ø yield n.value n ← n.next end while