1
0
mirror of https://github.com/kataras/iris.git synced 2026-07-31 16:39:52 +00:00

make Route's parse public

This commit is contained in:
Makis Maropoulos
2016-06-02 18:32:20 +03:00
parent 56a9fba34d
commit 79e984146e
2 changed files with 5 additions and 5 deletions
+1 -1
View File
@@ -128,7 +128,7 @@ func (s *Iris) initTemplates() {
return "", ErrRenderRouteNotFound.Format(routeName)
}
if result, ok := r.parse(args...); ok {
if result, ok := r.Parse(args...); ok {
return result, nil
}
return "", nil