From 172800ff9a2765185520c06dcf969fde9f5eb5e3 Mon Sep 17 00:00:00 2001 From: Alex Flint Date: Fri, 16 Apr 2021 20:44:18 -0700 Subject: [PATCH] fix a comment --- parse.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/parse.go b/parse.go index 22729e6..b7d159d 100644 --- a/parse.go +++ b/parse.go @@ -47,7 +47,7 @@ func (p path) Child(f reflect.StructField) path { // spec represents a command line option type spec struct { dest path - field reflect.StructField // name of struct field from this this option was created + field reflect.StructField // the struct field from which this option was created long string // the --long form for this option, or empty if none short string // the -s short form for this option, or empty if none multiple bool