Fix example index out of range error (#368)

pull/372/head
John Slavick 2022-06-20 20:37:46 -05:00 committed by GitHub
parent 4ec294d599
commit bfd4286c0f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -20,7 +20,7 @@ func main() {
flags.Parse(os.Args[1:])
args := flags.Args()
if len(args) < 2 {
if len(args) < 3 {
flags.Usage()
return
}