From cea1d2e612f1480cea197664fb788305f05c80a8 Mon Sep 17 00:00:00 2001 From: rafiramadhana Date: Mon, 11 Sep 2023 23:41:24 +0700 Subject: [PATCH] Fix typo --- cmd/cli/spawn.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/cli/spawn.go b/cmd/cli/spawn.go index 60c8a18..33970cf 100644 --- a/cmd/cli/spawn.go +++ b/cmd/cli/spawn.go @@ -75,7 +75,7 @@ If an instance with the same ID already exists for the layer definition, Layerfo if !alphanumericRegex.MatchString(instanceName) { fmt.Fprintf(os.Stderr, "Invalid name: %s\n", instanceName) - fmt.Fprintln(os.Stderr, "Name must must start and end with an alphanumeric character and can include dashes and underscores in between.") + fmt.Fprintln(os.Stderr, "Name must start and end with an alphanumeric character and can include dashes and underscores in between.") os.Exit(1) }