From 17a1573d0f497f6501a49955ffd3c8679a523303 Mon Sep 17 00:00:00 2001 From: davhojt Date: Sun, 1 May 2022 19:06:16 +0100 Subject: [PATCH] docs(unbreakable): correct grammar --- subjects/unbreakable/README.md | 13 ++++++------- 1 file changed, 6 insertions(+), 7 deletions(-) diff --git a/subjects/unbreakable/README.md b/subjects/unbreakable/README.md index 078c4d6a..8997869c 100644 --- a/subjects/unbreakable/README.md +++ b/subjects/unbreakable/README.md @@ -4,20 +4,19 @@ Implement 2 functions: -- `split` that works like the string method `.split` but take the string as - it's first argument. +- `split` that works like `String.split`, but takes the `string` as its first argument. -- `join` that works like the string method `.join` but take the array as - it's first argument. +- `join` that works like `Array.join`, but take the array as + its first argument. ### Notions -- [devdocs.io/javascript/global_objects/array/join](https://devdocs.io/javascript/global_objects/array/join) -- [devdocs.io/javascript/global_objects/string/split](https://devdocs.io/javascript/global_objects/string/split) +- [Array.join](https://devdocs.io/javascript/global_objects/array/join) +- [String.split](https://devdocs.io/javascript/global_objects/string/split) ### Code provided -> all code provided will be added to your solution and doesn't need to be submited. +> The provided code will be added to your solution, and does not need to be submitted. ```js String.prototype.split = undefined