From 3fc9a9ccb8ec8783bfcc02b7e4dfd7ee6468fa86 Mon Sep 17 00:00:00 2001 From: Cao Weiwei Date: Sat, 16 Jul 2016 22:41:04 +0800 Subject: [PATCH] Fix a syntax error in comments 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 5014157da6..ac72c7eb49 100644 --- a/pkg/mflag/flag.go +++ b/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