From 2b4e159a2472ef78f52f8190552b64015e95c1c5 Mon Sep 17 00:00:00 2001 From: Thomas Voss Date: Thu, 30 Nov 2023 01:24:07 +0100 Subject: Run gofmt --- opts.go | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/opts.go b/opts.go index 71518e4..5a83e21 100644 --- a/opts.go +++ b/opts.go @@ -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. -- cgit v1.2.3