From b1dca3f9a7dfa9e0e46c2797a0c48d89ec573da2 Mon Sep 17 00:00:00 2001 From: XuZvvHYmZfYdWJNRunkJ <3367239+JBrVJxsc@users.noreply.github.com> Date: Tue, 3 Sep 2019 00:11:39 -0700 Subject: [PATCH] Update README.md 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 649e2e2f7..9c7b45771 100644 --- a/README.md +++ b/README.md @@ -462,7 +462,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, " ")) }, }