From a2edfa4d9ad8213bee1916c98331944fdc9852c8 Mon Sep 17 00:00:00 2001 From: Jun Nishimura Date: Thu, 27 Jul 2023 21:00:03 +0900 Subject: [PATCH] update user_guide initialize -^> reset --- site/content/user_guide.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/site/content/user_guide.md b/site/content/user_guide.md index 93dc601f..71ddddc4 100644 --- a/site/content/user_guide.md +++ b/site/content/user_guide.md @@ -534,7 +534,7 @@ around it. In fact, you can provide your own if you want. Cobra supports grouping of available commands in the help output. To group commands, each group must be explicitly defined using `AddGroup()` on the parent command. Then a subcommand can be added to a group using the `GroupID` element -of that subcommand. `RemoveGroup()` can be used to remove groups and initialize the GroupID of commands belonging to the removed group. The groups will appear in the help output in the same order as they are defined using different +of that subcommand. `RemoveGroup()` can be used to remove groups and reset the GroupID of commands belonging to the removed group. The groups will appear in the help output in the same order as they are defined using different calls to `AddGroup()`. If you use the generated `help` or `completion` commands, you can set their group ids using `SetHelpCommandGroupId()` and `SetCompletionCommandGroupId()` on the root command, respectively.