From 858eeb31c5d39d4b829908ca602be4e6d439ca2b Mon Sep 17 00:00:00 2001 From: xiaowei Date: Thu, 17 Dec 2020 17:18:45 +0800 Subject: [PATCH] docs: prettier md format --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index ac7ea7f..4d91a79 100644 --- a/README.md +++ b/README.md @@ -50,7 +50,7 @@ const errors = parser.validate(correctSql); console.log(errors); ``` -output: +Output: ```javascript /* @@ -58,7 +58,7 @@ output: */ ``` -validate failed: +Validate failed: ```javascript const incorrectSql = 'selec id,name from user1;' @@ -66,7 +66,7 @@ const errors = parser.validate(incorrectSql); console.log(errors); ``` -output: +Output: ```javascript /*