1
0
mirror of https://github.com/kataras/iris.git synced 2025-12-18 10:27:06 +00:00

godoc: minor

This commit is contained in:
Gerasimos (Makis) Maropoulos
2021-04-22 11:52:25 +03:00
parent 382e7c14cb
commit 43079f75d2
5 changed files with 19 additions and 15 deletions

View File

@@ -318,7 +318,7 @@ func (c *ControllerActivator) parseMethods() {
}
func (c *ControllerActivator) parseMethod(m reflect.Method) {
httpMethod, httpPath, err := parseMethod(c.app.Router.Macros(), m, c.isReservedMethod,c.app.customPathWordFunc)
httpMethod, httpPath, err := parseMethod(c.app.Router.Macros(), m, c.isReservedMethod, c.app.customPathWordFunc)
if err != nil {
if err != errSkip {
c.logErrorf("MVC: fail to parse the route path and HTTP method for '%s.%s': %v", c.fullName, m.Name, err)