Skip to content

Commit ae22574

Browse files
authoredDec 15, 2020
Update README.zh-CN.md (trekhleb#439)
1 parent 94afab0 commit ae22574

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ Remove(head, value)
5151
return true
5252
end if
5353
n ← head.next
54-
while n = ø and value = n.value
54+
while n = ø and value !== n.value
5555
n ← n.next
5656
end while
5757
if n = tail

0 commit comments

Comments
 (0)
Please sign in to comment.