From 94db260d52e0d274d2085595189dbeeced4b5730 Mon Sep 17 00:00:00 2001 From: bhaltair Date: Thu, 19 Dec 2019 09:53:44 +0800 Subject: [PATCH] Update README.zh-CN.md --- 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 dfe9e593a8..03dd53c11d 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