From 0b988ff65c2fe426de4a0679c7cdcf9dad400467 Mon Sep 17 00:00:00 2001 From: Jouni Heikniemi <jouni@heikniemi.net> Date: Thu, 13 Jan 2022 22:43:31 +0200 Subject: [PATCH] Fix WithExample call on the CommandApp doc page to match reality (#689) --- 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 f940059..614f5d8 100644 --- a/docs/input/cli/commandApp.md +++ b/docs/input/cli/commandApp.md @@ -50,7 +50,7 @@ app.Configure(config => .IsHidden() .WithAlias("file-size") .WithDescription("Gets the file size for a directory.") - .WithExample(new[] {"c:\\windows", "--pattern", "*.dll"}); + .WithExample(new[] {"size", "c:\\windows", "--pattern", "*.dll"}); }); ```