From: Bjørn Erik Pedersen Date: Thu, 15 Oct 2015 08:15:26 +0000 (+0200) Subject: Rename prettiyPath to prettifyPath X-Git-Tag: v0.15~114 X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=6a3aced1;p=brevno-suite%2Fhugo Rename prettiyPath to prettifyPath --- diff --git a/helpers/path.go b/helpers/path.go index a6717cb3..9ead807c 100644 --- a/helpers/path.go +++ b/helpers/path.go @@ -430,10 +430,10 @@ func PathPrep(ugly bool, in string) string { // /section/name/ becomes /section/name/index.html // /section/name/index.html becomes /section/name/index.html func PrettifyPath(in string) string { - return prettiyPath(in, fpb) + return prettifyPath(in, fpb) } -func prettiyPath(in string, b filepathPathBridge) string { +func prettifyPath(in string, b filepathPathBridge) string { if filepath.Ext(in) == "" { // /section/name/ -> /section/name/index.html if len(in) < 2 { diff --git a/helpers/url.go b/helpers/url.go index c42bc645..d8530e3e 100644 --- a/helpers/url.go +++ b/helpers/url.go @@ -244,7 +244,7 @@ func PrettifyURL(in string) string { // /section/name/ becomes /section/name/index.html // /section/name/index.html becomes /section/name/index.html func PrettifyURLPath(in string) string { - return prettiyPath(in, pb) + return prettifyPath(in, pb) } // Uglify does the opposite of PrettifyURLPath().