From c022f6fabd6ec400cb7227be78bc651d9423be35 Mon Sep 17 00:00:00 2001 From: XuZvvHYmZfYdWJNRunkJ <3367239+JBrVJxsc@users.noreply.github.com> Date: Mon, 7 Oct 2019 14:41:51 -0700 Subject: [PATCH] Update README.md (#944) I think it meant to be `Echo` here instead of `Print` since the command is called `cmdEcho`. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index b58eacff..834f2878 100644 --- a/README.md +++ b/README.md @@ -482,7 +482,7 @@ For many years people have printed back to the screen.`, Echo works a lot like print, except it has a child command.`, Args: cobra.MinimumNArgs(1), Run: func(cmd *cobra.Command, args []string) { - fmt.Println("Print: " + strings.Join(args, " ")) + fmt.Println("Echo: " + strings.Join(args, " ")) }, }