From 5667cfb550a4e04e485fa216fb303f9b33ab597b Mon Sep 17 00:00:00 2001 From: Moshe Date: Tue, 14 Aug 2018 08:18:55 -0400 Subject: [PATCH] Update README.md (#163) fix verbiage --- src/data-structures/linked-list/README.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/data-structures/linked-list/README.md b/src/data-structures/linked-list/README.md index 54c81abd..b0e5eaf9 100644 --- a/src/data-structures/linked-list/README.md +++ b/src/data-structures/linked-list/README.md @@ -61,7 +61,8 @@ end Contains ```text Remove(head, value) Pre: head is the head node in the list - Post: value is the value to remove from the list, true, otherwise false + value is the value to remove from the list + Post: value is removed from the list, true, otherwise false if head = ΓΈ return false end if