From c3510f30365a828f766fbf866be7f85465d1f096 Mon Sep 17 00:00:00 2001 From: Nils Andresen Date: Wed, 8 Sep 2021 11:42:45 +0200 Subject: [PATCH] fixed 404 in documentation links were pointing to ./commandApp, however the generated page is ./commandapp --- docs/input/cli/commands.md | 4 ++-- docs/input/cli/getting-started.md | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/input/cli/commands.md b/docs/input/cli/commands.md index 6abcc46..055dc94 100644 --- a/docs/input/cli/commands.md +++ b/docs/input/cli/commands.md @@ -25,7 +25,7 @@ public class HelloCommand : Command ## Configuring -Commands are configured via the [`CommandApp`](commandApp)'s `Configure` method. +Commands are configured via the [`CommandApp`](commandapp)'s `Configure` method. ```csharp var app = new CommandApp(); @@ -45,7 +45,7 @@ app.Configure(config => ## Dependency Injection -Constructor injection is supported on commands. See the [`CommandApp`](commandApp) documentation for further information on configuring `Spectre.Console` for your container. +Constructor injection is supported on commands. See the [`CommandApp`](commandapp) documentation for further information on configuring `Spectre.Console` for your container. ## Validation diff --git a/docs/input/cli/getting-started.md b/docs/input/cli/getting-started.md index 1f41be9..b99b757 100644 --- a/docs/input/cli/getting-started.md +++ b/docs/input/cli/getting-started.md @@ -78,6 +78,6 @@ app.exe c:\windows --hidden --pattern *.dll Much more is possible. You can have multiple commands per application, settings can be customized and extended and the default behavior of the `CommandApp` can be extended and customized. -* See [CommandApp](./commandApp) for customizing how Spectre.Console.Cli builds the settings. +* See [CommandApp](./commandapp) for customizing how Spectre.Console.Cli builds the settings. * See [Create Commands](./commands) for information about different command types and their configurations. * See [Specifying Settings](./settings) for information about defining the settings.