Rename prettiyPath to prettifyPath
authorBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>
Thu, 15 Oct 2015 08:15:26 +0000 (10:15 +0200)
committerBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>
Thu, 15 Oct 2015 08:15:26 +0000 (10:15 +0200)
helpers/path.go
helpers/url.go

index a6717cb3767b8fcff2b7cecbb2fa4fbdffe4c4dd..9ead807c7bf8444e90af589aff6e3c5c4e2ded67 100644 (file)
@@ -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 {
index c42bc645043c6768d4e709995901c3bae6605b44..d8530e3e7eb04f1d7a650d7749e2f723d86dc91a 100644 (file)
@@ -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().