From 42fd3c74d658cf55684dba765c7609de260388ff Mon Sep 17 00:00:00 2001 From: Theotime Leveque Date: Mon, 7 Nov 2016 18:30:52 -0500 Subject: [PATCH] Fix typo in docstring --- cobra.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cobra.go b/cobra.go index b39c715a..1368df57 100644 --- a/cobra.go +++ b/cobra.go @@ -51,7 +51,7 @@ func AddTemplateFunc(name string, tmplFunc interface{}) { templateFuncs[name] = tmplFunc } -// AddTemplateFuncs adds multiple template functions availalble to Usage and +// AddTemplateFuncs adds multiple template functions that are available to Usage and // Help template generation. func AddTemplateFuncs(tmplFuncs template.FuncMap) { for k, v := range tmplFuncs {