Rename prettiyPath to prettifyPath

This commit is contained in:
Bjørn Erik Pedersen 2015-10-15 10:15:26 +02:00
parent 5619fe52d3
commit 6a3aced15a
2 changed files with 3 additions and 3 deletions

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

View 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().