From 0218f8e8b33ac1a5efef15a68d544a487170b466 Mon Sep 17 00:00:00 2001 From: davhojt Date: Sun, 19 Jun 2022 23:59:12 +0300 Subject: [PATCH] docs(flagger): correct grammar --- subjects/flagger/README.md | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/subjects/flagger/README.md b/subjects/flagger/README.md index 7a7243d7..e8323f53 100644 --- a/subjects/flagger/README.md +++ b/subjects/flagger/README.md @@ -2,14 +2,13 @@ ### Instructions -Create a function called `flags` that receives an object and returns -the specific aliases and descriptions from the properties of that object. +Create a function named `flags` that receives an object and returns the specific aliases and descriptions from the properties of that object. The `help` flag: -- Should be present in the output by default. +- Must be present in the **output** by default. - When not present in the input, it should return the description of all flags. - But when present it specifies the descriptions of the flags that are passed to help. (ex: `help: ['divide']`) +- When present in the input, it specifies the descriptions of the flags that are passed to `help`. (ex: `help: ['divide']`) #### Example: