diff --git a/stringer.go b/stringer.go index 6c267e5..0b116a7 100644 --- a/stringer.go +++ b/stringer.go @@ -45,10 +45,10 @@ var ( // Usage is a replacement usage function for the flags package. func Usage() { fmt.Fprintf(os.Stderr, "Usage of %s:\n", os.Args[0]) - fmt.Fprintf(os.Stderr, "\tstringer [flags] -type T [directory]\n") - fmt.Fprintf(os.Stderr, "\tstringer [flags] -type T files... # Must be a single package\n") + fmt.Fprintf(os.Stderr, "\tenumer [flags] -type T [directory]\n") + fmt.Fprintf(os.Stderr, "\tenumer [flags] -type T files... # Must be a single package\n") fmt.Fprintf(os.Stderr, "For more information, see:\n") - fmt.Fprintf(os.Stderr, "\thttp://godoc.org/golang.org/x/tools/cmd/stringer\n") + fmt.Fprintf(os.Stderr, "\thttps://github.com/alvaroloes/enumer\n") fmt.Fprintf(os.Stderr, "Flags:\n") flag.PrintDefaults() }