fixed 404 in documentation

links were pointing to ./commandApp, however
the generated page is ./commandapp
This commit is contained in:
Nils Andresen
2021-09-08 11:42:45 +02:00
committed by Patrik Svensson
parent 786b7670da
commit c3510f3036
2 changed files with 3 additions and 3 deletions

View File

@ -25,7 +25,7 @@ public class HelloCommand : Command<HelloCommand.Settings>
## 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