From 6d398fe30a5136195c20a1a47bc12b176cbdc8c7 Mon Sep 17 00:00:00 2001 From: John Date: Sat, 14 Apr 2018 12:41:27 +0800 Subject: [PATCH] README updates --- README.MD | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.MD b/README.MD index 038e22106..9ab233f97 100644 --- a/README.MD +++ b/README.MD @@ -271,14 +271,14 @@ go get -u gitee.com/johng/gf 优先级控制最主要的是两点因素,1、层级越深的规则优先级越高;2、命名匹配比模糊匹配优先级高。 我们来看示例(左边的规则优先级比右边高): - ```go +
         /user/name               >            /user/:action
         /:name/info              >            /:name/:action
         /:name/:action           >            /:name/*action
         /src/path/del            >            /src/path
         /src/path/del            >            /src/path/:action
         /src/path/*any           >            /src/path
-        ```
+        
1. **数据库ORM**