Skip to content

Commit

Permalink
Fix WithExample call on the CommandApp doc page to match reality (#689)
Browse files Browse the repository at this point in the history
  • Loading branch information
jouniheikniemi authored Jan 13, 2022
1 parent 9a6d8d9 commit 0b988ff
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/input/cli/commandApp.md
Original file line number Diff line number Diff line change
Expand Up @@ -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"});
});
```

Expand Down

0 comments on commit 0b988ff

Please sign in to comment.