Update router.md (#774)

fix gramma
diff --git a/content/zh/docs/v2.7/dev/source/router.md b/content/zh/docs/v2.7/dev/source/router.md
index 0c84e98..c25a306 100644
--- a/content/zh/docs/v2.7/dev/source/router.md
+++ b/content/zh/docs/v2.7/dev/source/router.md
@@ -303,7 +303,7 @@
         // 获取匹配项名称,比如 host、method 等
         String key = matchPair.getKey();
         String sampleValue;
-        // 如果 invocation 不为空,且 key 为 mehtod(s),表示进行方法匹配
+        // 如果 invocation 不为空,且 key 为 method(s),表示进行方法匹配
         if (invocation != null && (Constants.METHOD_KEY.equals(key) || Constants.METHODS_KEY.equals(key))) {
             // 从 invocation 获取被调用方法的名称
             sampleValue = invocation.getMethodName();