From 6aeca507b130245d36603be84f8bf43acb5aca05 Mon Sep 17 00:00:00 2001 From: Stewart Green <83973271+GMDEEP@users.noreply.github.com> Date: Sat, 3 Jul 2021 12:55:32 -0400 Subject: [PATCH] Fixed Grammar Made minor changes that help the flow --- exercises/21.3-Filter-list/README.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/exercises/21.3-Filter-list/README.md b/exercises/21.3-Filter-list/README.md index c5864244..5197f5d7 100644 --- a/exercises/21.3-Filter-list/README.md +++ b/exercises/21.3-Filter-list/README.md @@ -2,11 +2,11 @@ # 📝Instructions: -Given an array names please create a function filters the list with -only the names that contain the given string. +Given an array of names, please create a function that filters the list with +only the names containing the given string. -- Create a function called `filterByName` that take two values one is -the array and second one is the filter desire. +- Create a function called `filterByName` that accepts two values one is +the array and the second one is the filter desire. - The search should NOT be Case Sensitive. @@ -20,4 +20,4 @@ the array and second one is the filter desire. array.filter(); string.includes(); string.toLowerCase(); -``` \ No newline at end of file +```