Fix WithExample call on the CommandApp doc page to match reality (#689)

This commit is contained in:
Jouni Heikniemi 2022-01-13 22:43:31 +02:00 committed by GitHub
parent 9a6d8d92b4
commit 0b988ff65c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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"});
});
```