fix the typo

This commit is contained in:
astaxie 2014-06-23 23:16:06 +08:00
parent 763382e4ce
commit 5493f00cd0
1 changed files with 2 additions and 1 deletions

View File

@ -71,13 +71,14 @@ func init() {
}
}
func urlReplace(src string) string {
pt := strings.Split(src, "/")
for i, p := range pt {
if len(p) > 0 {
if p[0] == ':' {
pt[i] = "{" + p[1:] + "}"
} else if p[0] == "?" && p[1] == ":" {
} else if p[0] == '?' && p[1] == ':' {
pt[i] = "{" + p[2:] + "}"
}
}