Fix missing := in example code

This commit is contained in:
Dave Rolsky
2020-01-21 15:24:39 -06:00
committed by Alec Thomas
parent 01b720cb19
commit 5db71ed657
+1 -1
View File
@@ -222,7 +222,7 @@ var cli struct {
func main() {
ctx := kong.Parse(&cli)
// Call the Run() method of the selected parsed command.
err = ctx.Run(&Context{Debug: cli.Debug})
err := ctx.Run(&Context{Debug: cli.Debug})
ctx.FatalIfErrorf(err)
}