浏览代码

Merge pull request #24723 from icaoweiwei/patch_2016-07-16_2

Fix a syntax error in comments
Doug Davis 9 年之前
父节点
当前提交
b23fc63f04
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      pkg/mflag/flag.go

+ 1 - 1
pkg/mflag/flag.go

@@ -9,7 +9,7 @@
 //	Define flags using flag.String(), Bool(), Int(), etc.
 //
 //	This declares an integer flag, -f or --flagname, stored in the pointer ip, with type *int.
-//		import "flag /github.com/docker/docker/pkg/mflag"
+//		import flag "github.com/docker/docker/pkg/mflag"
 //		var ip = flag.Int([]string{"f", "-flagname"}, 1234, "help message for flagname")
 //	If you like, you can bind the flag to a variable using the Var() functions.
 //		var flagvar int