From 9be8bf019419be76e9582188888b80b0940abf74 Mon Sep 17 00:00:00 2001 From: Cao Weiwei Date: Sun, 17 Jul 2016 13:08:07 +0800 Subject: [PATCH] Fix a wrong word in comment. Signed-off-by: Cao Weiwei --- pkg/mflag/flag.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/mflag/flag.go b/pkg/mflag/flag.go index ac72c7eb49..f13a8cf06c 100644 --- a/pkg/mflag/flag.go +++ b/pkg/mflag/flag.go @@ -33,7 +33,7 @@ // will display: `Warning: '-flagname' is deprecated, it will be removed soon. See usage.` // so you can only use `-f`. // -// You can also group one letter flags, bif you declare +// You can also group one letter flags, if you declare // var v = flag.Bool([]string{"v", "-verbose"}, false, "help message for verbose") // var s = flag.Bool([]string{"s", "-slow"}, false, "help message for slow") // you will be able to use the -vs or -sv