1
0
Fork 0
mirror of https://github.com/spf13/cobra synced 2025-04-24 15:47:19 +00:00

Fix typo in docstring ()

This commit is contained in:
Théotime Lévêque 2017-04-17 10:03:07 -07:00 committed by Albert Nigmatzianov
parent 0a0df1e881
commit b6cb395893

View file

@ -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 {