1
0
Fork 0
mirror of https://github.com/moby/moby.git synced 2022-11-09 12:21:53 -05:00

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

Fix a syntax error in comments
This commit is contained in:
Doug Davis 2016-07-16 12:07:54 -04:00 committed by GitHub
commit b23fc63f04

View file

@ -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