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