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, " ")) }, }