diff options
author | Thomas Voss <mail@thomasvoss.com> | 2023-11-30 01:24:07 +0100 |
---|---|---|
committer | Thomas Voss <mail@thomasvoss.com> | 2023-11-30 01:24:07 +0100 |
commit | 2b4e159a2472ef78f52f8190552b64015e95c1c5 (patch) | |
tree | 40c4fa8baf145b243156f0b03158aec16489451e | |
parent | 625187cf19df20917f83f51fc9fbbc95d7842dd2 (diff) |
Run gofmtv1.0.0
-rw-r--r-- | opts.go | 10 |
1 files changed, 5 insertions, 5 deletions
@@ -119,11 +119,11 @@ func Get(args []string, optstr string) (flags []Flag, optind int, err error) { // When parsing, GetLong will also accept incomplete long-options if they // are ambiguous. For example, given the following definition of opts: // -// opts := []LongOpt{ -// {Short: 'a', Long: "add", Arg: None}, -// {Short: 'd', Long: "delete", Arg: None}, -// {Short: 'D', Long: "defer", Arg: None}, -// } +// opts := []LongOpt{ +// {Short: 'a', Long: "add", Arg: None}, +// {Short: 'd', Long: "delete", Arg: None}, +// {Short: 'D', Long: "defer", Arg: None}, +// } // // The options ‘--a’ and ‘--ad’ will parse as ‘--add’. The option ‘--de’ // will not parse however as it is ambiguous. |