From b3ea17a6f9f21f92adc316bc5448201befb328d5 Mon Sep 17 00:00:00 2001 From: PhatPhuckDave Date: Thu, 15 Aug 2024 22:40:25 +0200 Subject: [PATCH] Fix typo --- main.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 {