Browse Source

Merge pull request #24728 from icaoweiwei/patch_2016-07-17_1

Fix a wrong word in comment.
Sebastiaan van Stijn 9 years ago
parent
commit
caf8c75572
1 changed files with 1 additions and 1 deletions
  1. 1 1
      pkg/mflag/flag.go

+ 1 - 1
pkg/mflag/flag.go

@@ -33,7 +33,7 @@
 //	will display: `Warning: '-flagname' is deprecated, it will be removed soon. See usage.`
 //	will display: `Warning: '-flagname' is deprecated, it will be removed soon. See usage.`
 //	so you can only use `-f`.
 //	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 v = flag.Bool([]string{"v", "-verbose"}, false, "help message for verbose")
 //		var s = flag.Bool([]string{"s", "-slow"}, false, "help message for slow")
 //		var s = flag.Bool([]string{"s", "-slow"}, false, "help message for slow")
 //	you will be able to use the -vs or -sv
 //	you will be able to use the -vs or -sv