From ae225741fa64a9b5869f37610e626658e2d80108 Mon Sep 17 00:00:00 2001 From: bhaltair Date: Wed, 16 Dec 2020 01:44:44 +0800 Subject: [PATCH] Update README.zh-CN.md (#439) --- src/data-structures/doubly-linked-list/README.zh-CN.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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