hugo

Unnamed repository; edit this file 'description' to name the repository.

git clone git://git.shimmy1996.com/hugo.git
commit c915d0d3252007d61b680a388dcbe6b035d0adc8
parent 47d4edce6083bab1c190dad99fefb7c73afc6af8
Author: Cameron Moore <moorereason@gmail.com>
Date:   Tue, 28 Aug 2018 15:43:42 -0500

hugolib: Fix typo in private func name

Diffstat:
Mhugolib/paths/themes.go | 4++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/hugolib/paths/themes.go b/hugolib/paths/themes.go
@@ -60,7 +60,7 @@ func (c *themesCollector) addAndRecurse(themes ...string) error {
 			if err != nil {
 				return err
 			}
-			if err := c.addTemeNamesFromTheme(tc); err != nil {
+			if err := c.addThemeNamesFromTheme(tc); err != nil {
 				return err
 			}
 		}
@@ -145,7 +145,7 @@ func (c *themesCollector) getConfigFileIfProvided(theme string) string {
 
 }
 
-func (c *themesCollector) addTemeNamesFromTheme(theme ThemeConfig) error {
+func (c *themesCollector) addThemeNamesFromTheme(theme ThemeConfig) error {
 	if theme.Cfg != nil && theme.Cfg.IsSet("theme") {
 		v := theme.Cfg.Get("theme")
 		switch vv := v.(type) {