From b6cb3958937245a12d4d7728be080a6c758f4136 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Th=C3=A9otime=20L=C3=A9v=C3=AAque?= Date: Mon, 17 Apr 2017 10:03:07 -0700 Subject: [PATCH] Fix typo in docstring (#360) --- cobra.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cobra.go b/cobra.go index 9605b984..25473a70 100644 --- a/cobra.go +++ b/cobra.go @@ -52,7 +52,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 {