From 9b81d84c53861088bee01b7d74ed139176f049f4 Mon Sep 17 00:00:00 2001 From: AteurGames <47047372+AteurGames@users.noreply.github.com> Date: Mon, 6 Jan 2020 19:18:43 -0800 Subject: [PATCH] Fix typo on "How to parse command line arguments" --- .../command-line/how-to-parse-command-line-arguments.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/locale/en/knowledge/command-line/how-to-parse-command-line-arguments.md b/locale/en/knowledge/command-line/how-to-parse-command-line-arguments.md index 52b71618801a..611304f04106 100644 --- a/locale/en/knowledge/command-line/how-to-parse-command-line-arguments.md +++ b/locale/en/knowledge/command-line/how-to-parse-command-line-arguments.md @@ -121,7 +121,7 @@ A summary of elements used in the program: * **argv**: This is the modified `process.argv` which we have configured with yargs. * **command()**: This method is used to add commands, their description and options which are specific to these commands only, like in the above code `lyr` is the command and `-y` is lyr specific option: `node myapp.js lyr -y 2016` * **option()**: This method is used to add global options(flags) which can be accessed by all commands or without any command. -* **help()**: This method is used to display a help dialogue when `--help` option is encountered which contains description oof ll the `commands` and `options` available. +* **help()**: This method is used to display a help dialogue when `--help` option is encountered which contains description of all the `commands` and `options` available. * **alias()**: This method provides an alias name to an option, like in the above code both `--help` and `-h` triggers the help dialogue. For more information on yargs and the many, many other things it can do for your command-line arguments, please visit [http://yargs.js.org/docs/](http://yargs.js.org/docs/)