diff --git a/docs/v2/examples/subcommands-categories.md b/docs/v2/examples/subcommands-categories.md index 5f0b8d2e11..d0af11927a 100644 --- a/docs/v2/examples/subcommands-categories.md +++ b/docs/v2/examples/subcommands-categories.md @@ -9,6 +9,9 @@ For additional organization in apps that have many subcommands, you can associate a category for each command to group them together in the help output, e.g.: + ```go package main @@ -41,14 +44,3 @@ func main() { } } ``` - -Will include: - -``` -COMMANDS: - noop - - Template actions: - add - remove -```