From c4667c9e6363b5d750c656ba82d68fb5bad50a5e Mon Sep 17 00:00:00 2001 From: George Kuan Date: Sat, 25 Apr 2015 10:59:26 -0700 Subject: [PATCH] Fixed typo in md output --- md_docs.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/md_docs.go b/md_docs.go index 71bc8d5b..ab5188e7 100644 --- a/md_docs.go +++ b/md_docs.go @@ -34,7 +34,7 @@ func printOptions(out *bytes.Buffer, cmd *Command, name string) { parentFlags := cmd.InheritedFlags() parentFlags.SetOutput(out) if parentFlags.HasFlags() { - fmt.Fprintf(out, "### Options inherrited from parent commands\n\n```\n") + fmt.Fprintf(out, "### Options inherited from parent commands\n\n```\n") parentFlags.PrintDefaults() fmt.Fprintf(out, "```\n\n") }