chore: polishing docs and comments: typo fixes for clarity (#25081)

Co-authored-by: Alex | Interchain Labs <alex@interchainlabs.io>
This commit is contained in:
dmytroheknt
2025-08-04 15:35:53 +00:00
committed by GitHub
co-authored by Alex | Interchain Labs
parent 2ff43141b2
commit ec4ee1cb19
11 changed files with 11 additions and 11 deletions
+1 -1
View File
@@ -86,7 +86,7 @@ func TestSetArgsWithWrappedMethod(t *testing.T) {
f := cmd.Flags()
f.BoolP("a", "a", false, "check built-in pflag.Value")
f.IntSlice("b", []int{1, 2}, "check built-in pflag.SliceValue with default value")
f.IntSliceP("c", "c", nil, "check built pflag.SliceValue with nil default value")
f.IntSliceP("c", "c", nil, "check built-in pflag.SliceValue with nil default value")
f.Var(&mockFlagWithCommaD, "d", "check custom implementation of pflag.SliceValue with splitting by comma and default value")
f.VarP(&mockFlagWithCommaE, "e", "e", "check custom implementation of pflag.SliceValue with splitting by comma and nil default value")
f.Var(&mockFlagWithSemicolonF, "f", "check custom implementation of pflag.SliceValue with splitting by semicolon and default value")