From a1a8d4421e3b7e8c6bcd2677e7862ec6f3aed1cc Mon Sep 17 00:00:00 2001 From: Tom Meadows Date: Fri, 13 Aug 2021 19:31:16 +0100 Subject: [PATCH] fix: argo-sever mistype (#6543) Signed-off-by: Tom Meadows --- cmd/argo/commands/server.go | 2 +- util/help/topics.go | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/cmd/argo/commands/server.go b/cmd/argo/commands/server.go index 75e08beb0191..f8f1cc2ac899 100644 --- a/cmd/argo/commands/server.go +++ b/cmd/argo/commands/server.go @@ -55,7 +55,7 @@ func NewServerCommand() *cobra.Command { Use: "server", Short: "start the Argo Server", Example: fmt.Sprintf(` -See %s`, help.ArgoSever), +See %s`, help.ArgoServer), RunE: func(c *cobra.Command, args []string) error { cmd.SetLogFormatter(logFormat) stats.RegisterStackDumper() diff --git a/util/help/topics.go b/util/help/topics.go index 9ee535453540..b3df474fbab1 100644 --- a/util/help/topics.go +++ b/util/help/topics.go @@ -1,9 +1,9 @@ package help const ( - root = "https://argoproj.github.io/argo-workflows" - ArgoSever = root + "/argo-server.md" - CLI = root + "/cli.md" + root = "https://argoproj.github.io/argo-workflows" + ArgoServer = root + "/argo-server.md" + CLI = root + "/cli.md" WorkflowTemplates = root + "/workflow-templates.md" WorkflowTemplatesReferencingOtherTemplates = WorkflowTemplates + "#referencing-other-workflowtemplates"