Merge pull request #5 from mcuadros/master

Fixes in example
This commit is contained in:
Steve Francia 2014-01-02 09:56:32 -08:00
commit 88d4f7089f

View file

@ -151,7 +151,7 @@ We have only defined one flag for a single command.
More documentation about flags is available at https://github.com/spf13/pflag
Import(
import(
"github.com/spf13/cobra"
"fmt"
"strings"
@ -195,7 +195,7 @@ More documentation about flags is available at https://github.com/spf13/pflag
},
}
cmdTimes().Flags().IntVarP(&echoTimes, "times", "t", 1, "times to echo the input")
cmdTimes.Flags().IntVarP(&echoTimes, "times", "t", 1, "times to echo the input")
var rootCmd = &cobra.Command{Use: "app"}
rootCmd.AddCommand(cmdPrint, cmdEcho)