From cff0083a5cb951cdbca9b199b1de580124dc96c9 Mon Sep 17 00:00:00 2001 From: jbranchaud Date: Sun, 13 Mar 2016 10:45:04 -0500 Subject: [PATCH] Add example of an edge case --- javascript/immutable-remove-with-the-spread-operator.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/javascript/immutable-remove-with-the-spread-operator.md b/javascript/immutable-remove-with-the-spread-operator.md index 601118c..3e1db42 100644 --- a/javascript/immutable-remove-with-the-spread-operator.md +++ b/javascript/immutable-remove-with-the-spread-operator.md @@ -23,5 +23,5 @@ list It only took a couple lines of code and immutability is baked in. -There may be a couple edge cases that are not handled in this solution, but -you get the general idea. +There may be a couple edge cases that are not handled in this solution (e.g. +`remove(list, -1)`), but you get the general idea.