From b20a06d92b87987231feb716ae2575cbecccae8f Mon Sep 17 00:00:00 2001 From: Christian Rocha Date: Thu, 27 Aug 2020 18:08:39 -0400 Subject: [PATCH] Fix stash capitalization in help --- stash_cmd.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stash_cmd.go b/stash_cmd.go index 43ab6c2..c81aa9e 100644 --- a/stash_cmd.go +++ b/stash_cmd.go @@ -25,7 +25,7 @@ var ( stashCmd = &cobra.Command{ Use: "stash SOURCE", Hidden: false, - Short: "stash a markdown", + Short: "Stash a markdown", Long: formatBlock(fmt.Sprintf("\nSave a mardkdown file to your %s.", common.Keyword("stash"))), Example: formatBlock("glow stash README.md\nglow stash -m \"secret notes\" path/to/notes.md"), Args: cobra.ExactArgs(1),