diff --git a/main.go b/main.go index c2a2530..7610a34 100644 --- a/main.go +++ b/main.go @@ -79,8 +79,8 @@ func main() { flag.BoolVar(&noinit, "noinit", false, "Do not add remote to the new repo") flag.BoolVar(&noinit, "ni", false, "Do not add remote to the new repo (shorthand)") flag.BoolVar(&forceInit, "f", false, "Force assignment of the remote (deletes existing origin)") - flag.StringVar(&remote, "remote", "origin", "Namw of the remote to create for the new repository") - flag.StringVar(&remote, "r", "origin", "Namw of the remote to create for the new repository (shorthand)") + flag.StringVar(&remote, "remote", "origin", "Name of the remote to create for the new repository") + flag.StringVar(&remote, "r", "origin", "Name of the remote to create for the new repository (shorthand)") flag.Parse() if len(flag.Args()) > 0 {