From af60ce5f444e8cf7468cb12732db6317f9b0487f Mon Sep 17 00:00:00 2001 From: Naveen Gogineni Date: Mon, 5 Sep 2022 11:36:55 -0400 Subject: [PATCH] Update docs --- docs/v2/examples/flags.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/v2/examples/flags.md b/docs/v2/examples/flags.md index ed7dab2..805fb82 100644 --- a/docs/v2/examples/flags.md +++ b/docs/v2/examples/flags.md @@ -104,7 +104,7 @@ See full list of flags at https://pkg.go.dev/github.com/urfave/cli/v2 For bool flags you can specify the flag multiple times to get a count(e.g -v -v -v or -vvv) ```go package main @@ -129,7 +129,7 @@ func main() { }, }, Action: func(cCtx *cli.Context) error { - fmt.Println("Count %d", count) + fmt.Println("Count ", count) return nil }, }