From 32d7ea15bd531ec11d457d697babf919d34b41ec Mon Sep 17 00:00:00 2001 From: Nils Andresen Date: Thu, 15 Jul 2021 09:39:25 +0200 Subject: [PATCH] Change LogCommandSettings to CommandSettings in example Instead of `LogCommandSettings` for the `Settings` of the `HelloCommand` --- docs/input/cli/commands.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/input/cli/commands.md b/docs/input/cli/commands.md index 9dd159a..aa56a18 100644 --- a/docs/input/cli/commands.md +++ b/docs/input/cli/commands.md @@ -7,7 +7,7 @@ Commands in `Spectre.Console.Cli` are defined by creating a class that inherits ```csharp public class HelloCommand : Command { - public class Settings : LogCommandSettings + public class Settings : CommandSettings { [CommandArgument(0, "[Name]")] public string Name { get; set; }