diff options
| author | guoguangwu <[email protected]> | 2023-11-15 17:58:55 +0800 |
|---|---|---|
| committer | guoguangwu <[email protected]> | 2023-11-15 17:58:55 +0800 |
| commit | 582e6d537a34c8d16bbb401b70f590d5502bbd73 (patch) | |
| tree | bf8523c5d9050cb8ba6de220aad5dccca4185356 /README.md | |
| parent | bf629a16cbe505e81b6347813a918770a3b727df (diff) | |
fix: typo
Signed-off-by: guoguangwu <[email protected]>
Diffstat (limited to 'README.md')
| -rw-r--r-- | README.md | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -591,7 +591,7 @@ https://godoc.org/github.com/alexflint/go-arg There are many command line argument parsing libraries for Go, including one in the standard library, so why build another? -The `flag` library that ships in the standard library seems awkward to me. Positional arguments must preceed options, so `./prog x --foo=1` does what you expect but `./prog --foo=1 x` does not. It also does not allow arguments to have both long (`--foo`) and short (`-f`) forms. +The `flag` library that ships in the standard library seems awkward to me. Positional arguments must precede options, so `./prog x --foo=1` does what you expect but `./prog --foo=1 x` does not. It also does not allow arguments to have both long (`--foo`) and short (`-f`) forms. Many third-party argument parsing libraries are great for writing sophisticated command line interfaces, but feel to me like overkill for a simple script with a few flags. |
