From 2444b9740b444d0554f78d8086d59ae864bd2a10 Mon Sep 17 00:00:00 2001 From: Ly <952700304@qq.com> Date: Sun, 9 Aug 2020 20:13:36 +0800 Subject: [PATCH] =?UTF-8?q?fix:=200->=C3=B8=20(#486)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/data-structures/linked-list/README.zh-CN.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/data-structures/linked-list/README.zh-CN.md b/src/data-structures/linked-list/README.zh-CN.md index f352b4fa..81f036ab 100644 --- a/src/data-structures/linked-list/README.zh-CN.md +++ b/src/data-structures/linked-list/README.zh-CN.md @@ -101,7 +101,7 @@ Traverse(head) Pre: head is the head node in the list Post: the items in the list have been traversed n ← head - while n != 0 + while n != ø yield n.value n ← n.next end while