diff options
author | Thomas Voss <mail@thomasvoss.com> | 2023-11-30 01:45:50 +0100 |
---|---|---|
committer | Thomas Voss <mail@thomasvoss.com> | 2023-11-30 01:45:50 +0100 |
commit | 06e45fa081b79fccaf262cbea4192d303191b4fc (patch) | |
tree | b89a8965877c1d67c03c2ac7306983c4f4b8c00f | |
parent | e151eb87ebd2ffe104bce5238c490d1b27d76abe (diff) |
Fix another typov1.0.3
-rw-r--r-- | opts.go | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -40,8 +40,8 @@ type Flag struct { // LongOpt represents a long-option to attempt to parse. All long // options have a short-hand form represented by Short and a long-form -// represented by Long. Arg is used to represent whether or not a takes -// an argument. +// represented by Long. Arg is used to represent whether or not the +// long-option takes an argument. // // In the case that you want to parse a long-option which doesn’t have a // short-hand form, you can set Short to a negative integer. |