Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 2444b97

Browse files
authoredAug 9, 2020
fix: 0->ø (trekhleb#486)
1 parent 95641c8 commit 2444b97

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎src/data-structures/linked-list/README.zh-CN.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ Traverse(head)
101101
Pre: head is the head node in the list
102102
Post: the items in the list have been traversed
103103
n ← head
104-
while n != 0
104+
while n != ø
105105
yield n.value
106106
n ← n.next
107107
end while

0 commit comments

Comments
 (0)
Please sign in to comment.