From 6d7155a2e0fb36195f3d873748e1245a4f9bc98b Mon Sep 17 00:00:00 2001 From: davhojt Date: Sun, 19 Jun 2022 23:51:40 +0300 Subject: [PATCH] docs(pronoun): correct grammar --- subjects/pronoun/README.md | 17 +++++++++++++---- 1 file changed, 13 insertions(+), 4 deletions(-) diff --git a/subjects/pronoun/README.md b/subjects/pronoun/README.md index f727fe9f..a263f8bc 100644 --- a/subjects/pronoun/README.md +++ b/subjects/pronoun/README.md @@ -2,10 +2,19 @@ ### Instructions -Create a function called `pronoun` that has a string as parameter. This function returns an object -that will have all the personal pronouns, present in the string, as keys. Each key will have a sub object with the -first word after each of the personal pronouns found in the string. -Also, a property `count` must be added, to the sub object, with the amount of occurrences of the pronoun. +Create a function named `pronoun` that accepts a string parameter. +This function returns an object that will have all the personal pronouns, present in the string, as keys. Each key will have a sub object with the first word after each of the personal pronouns found in the string. + +You must also a `count` property to the sub object, with the amount of occurrences of the pronoun. + +Pronouns: +- i +- you +- he +- she +- it +- they +- we #### Example