From 49133633bec330eb0d9b2728f1004339c4e89a5e Mon Sep 17 00:00:00 2001 From: josephrocca <1167575+josephrocca@users.noreply.github.com> Date: Thu, 30 May 2019 16:19:19 +1000 Subject: [PATCH] missing comma --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index e46c6d6..44de100 100644 --- a/README.md +++ b/README.md @@ -77,7 +77,7 @@ filter.clean('hell this wont clean anything'); //hell this wont clean anything ```js let filter = new Filter(); -filter.removeWords('hells' 'sadist'); +filter.removeWords('hells', 'sadist'); filter.clean("some hells word!"); //some hells word!