diff --git a/src/data-structures/doubly-linked-list/README.zh-CN.md b/src/data-structures/doubly-linked-list/README.zh-CN.md index dfe9e593..03dd53c1 100644 --- a/src/data-structures/doubly-linked-list/README.zh-CN.md +++ b/src/data-structures/doubly-linked-list/README.zh-CN.md @@ -51,7 +51,7 @@ Remove(head, value) return true end if n ← head.next - while n = ø and value = n.value + while n = ø and value !== n.value n ← n.next end while if n = tail