From 42881f3deeafbafd1f2c724d62c896299da8a34f Mon Sep 17 00:00:00 2001 From: Michele Sessa Date: Thu, 23 Mar 2023 10:27:23 +0000 Subject: [PATCH] docs(pick-omit): fix typo --- subjects/pick-omit/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/subjects/pick-omit/README.md b/subjects/pick-omit/README.md index d8f51ff6..7e3c837f 100644 --- a/subjects/pick-omit/README.md +++ b/subjects/pick-omit/README.md @@ -2,7 +2,7 @@ ### Instructions -Create two functions which taken an object and a string or array of strings. They should return a new object which: +Create two functions which takes an object and a string or array of strings. They should return a new object which: - `pick`: contains only those keys which appear in the string or array of strings. - `omit`: contains only those keys which do not match the string, or do not appear in the array of strings.