1
0
mirror of https://github.com/astaxie/beego.git synced 2024-06-18 12:24:14 +00:00

Fixed some typos

This commit is contained in:
vadimi 2013-12-04 22:27:29 -05:00
parent 9f3058caad
commit 12a37f71be
2 changed files with 4 additions and 4 deletions

2
app.go
View File

@ -30,7 +30,7 @@ func (app *App) Run() {
addr = fmt.Sprintf("%s:%d", HttpAddr, HttpPort)
}
BeeLogger.Info("Runing on %s", addr)
BeeLogger.Info("Running on %s", addr)
var (
err error

View File

@ -155,7 +155,7 @@ func (p *ControllerRegistor) Add(pattern string, c ControllerInterface, mappingM
for _, v := range semi {
colon := strings.Split(v, ":")
if len(colon) != 2 {
panic("method mapping fomate is error")
panic("method mapping format is invalid")
}
comma := strings.Split(colon[0], ",")
for _, m := range comma {
@ -163,10 +163,10 @@ func (p *ControllerRegistor) Add(pattern string, c ControllerInterface, mappingM
if val := reflectVal.MethodByName(colon[1]); val.IsValid() {
methods[strings.ToLower(m)] = colon[1]
} else {
panic(colon[1] + " method don't exist in the controller " + t.Name())
panic(colon[1] + " method doesn't exist in the controller " + t.Name())
}
} else {
panic(v + " is an error method mapping,Don't exist method named " + m)
panic(v + " is an invalid method mapping. Method doesn't exist " + m)
}
}
}