We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 43e92cb commit fbed452Copy full SHA for fbed452
docs/v3/examples/arguments/advanced.md
@@ -139,7 +139,7 @@ func main() {
139
},
140
141
Action: func(ctx context.Context, cmd *cli.Command) error {
142
- fmt.Printf("We got %v", cmd.IntArgs("someint"))
+ fmt.Println("We got ", cmd.IntArgs("someint"))
143
return nil
144
145
}
@@ -186,7 +186,7 @@ func main() {
186
187
188
189
- fmt.Printf("We got %v", ivals)
+ fmt.Println("We got ", ivals)
190
191
192
0 commit comments