From 5a52c1f277abe9cf65173538aa2f60c9d3c7ffe5 Mon Sep 17 00:00:00 2001 From: Donovan Brown Date: Sat, 13 Jan 2024 10:03:39 -0600 Subject: [PATCH] Updated typo in commandApp.md There was a sentence where the word `commits` should have been `commands`. --- docs/input/cli/commandApp.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/input/cli/commandApp.md b/docs/input/cli/commandApp.md index cff2bc9..182cb37 100644 --- a/docs/input/cli/commandApp.md +++ b/docs/input/cli/commandApp.md @@ -23,7 +23,7 @@ app.Configure(config => ## Multiple Commands -In the previous example we have a single command that is configured. For complex command line applications, it is common for them to have multiple commands (or verbs) defined. Examples of applications like this are `git`, `dotnet` and `gh`. For example, git would have a `commit` command and along with other commits like `add` or `rebase`. Each with their own settings and validation. With `Spectre.Console.Cli` we use the `Configure` method to add these commands. +In the previous example we have a single command that is configured. For complex command line applications, it is common for them to have multiple commands (or verbs) defined. Examples of applications like this are `git`, `dotnet` and `gh`. For example, git would have a `commit` command and along with other commands like `add` or `rebase`. Each with their own settings and validation. With `Spectre.Console.Cli` we use the `Configure` method to add these commands. For example, to add three different commands to the application: