修正一处函数名拼写错误

修正一处函数名拼写错误
This commit is contained in:
hainuo
2016-07-10 13:35:08 +08:00
committed by GitHub
parent 6c99692e32
commit 11183898d7

View File

@@ -199,7 +199,7 @@ class Route
if (is_array($val)) {
$route = $val[0];
$option1 = array_merge($option, $val[1]);
$pattern1 = array_merege($pattern, isset($val[2]) ? $val[2] : []);
$pattern1 = array_merge($pattern, isset($val[2]) ? $val[2] : []);
} else {
$route = $val;
}