`glab mr note --help` wrong+outdated?
<!--- Please read this! Before opening a new issue, make sure to search for keywords in the issues filtered by the "bug" label: - https://gitlab.com/gitlab-org/cli/-/issues/?label_name%5B%5D=type%3A%3Abug and verify the issue you're about to submit isn't a duplicate. ---> ### Checklist <!-- Please test the latest versions, that will remove the possibility that you see a bug that is fixed in a newer version. --> - [X] I'm using the latest version of the extension (Run `glab --version`) - Extension version: glab 1.91.0 (266e9be2) - [X] Operating system and version: MacOS 26.4 (25E246) - [X] Gitlab.com or self-managed instance? N/A - [X] GitLab version (if self-managed) N/A - [X] I have performed `glab auth status` to check for authentication issues: N/A - [X] Run the command in debug mode (like `DEBUG=true glab mr list`) and attach any useful output ### Summary ``` bash $ glab mr note --help [...] EXAMPLES [...] # Resolve a discussion by note ID glab mr note 123 --resolve 3107030349 # Unresolve a discussion by note ID glab mr note 123 --unresolve 3107030349 COMMANDS list [<id> | <branch>] [--flags] List merge request discussions. (EXPERIMENTAL) reopen <discussion-id> [<id> | <branch>] Reopen a discussion on a merge request. (EXPERIMENTAL) resolve <discussion-id> [<id> | <branch>] Resolve a discussion on a merge request. (EXPERIMENTAL) ``` Issues: - Examples are using deprecated --resolve/--unresolve instead of resolve/reopen - If I am looking at [the code](https://gitlab.com/gitlab-org/cli/-/blob/main/internal/commands/mr/note/mr_note_resolve.go?ref_type=heads#L102) correctly, the <discussion-id> is the 2nd argument, not 1st? ### Possible fixes - Outdated example: https://gitlab.com/gitlab-org/cli/-/blob/main/internal/commands/mr/note/mr_note_create.go?ref_type=heads#L36-40 - I do not understand how the COMMANDS section is wrong - https://gitlab.com/gitlab-org/cli/-/blob/v1.91.0/internal/commands/mr/note/mr_note_resolve.go?ref_type=tags#L64 seems to have the correct order (main is the same): ``` Use: fmt.Sprintf("%s [<id> | <branch>] <discussion-id>", action), ```
issue