aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Voss <mail@thomasvoss.com> 2023-11-30 01:45:50 +0100
committerThomas Voss <mail@thomasvoss.com> 2023-11-30 01:45:50 +0100
commit06e45fa081b79fccaf262cbea4192d303191b4fc (patch)
treeb89a8965877c1d67c03c2ac7306983c4f4b8c00f
parente151eb87ebd2ffe104bce5238c490d1b27d76abe (diff)
Fix another typov1.0.3
-rw-r--r--opts.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/opts.go b/opts.go
index cdd0c27..c8e2b8c 100644
--- a/opts.go
+++ b/opts.go
@@ -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.