From 47aa09385a9e41603831e705fa4278e0bc3aa05d Mon Sep 17 00:00:00 2001 From: nuintun Date: Thu, 28 Dec 2017 12:06:01 +0800 Subject: [PATCH] :memo: Update docs --- README-EN.md | 8 ++++---- README.md | 8 ++++---- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/README-EN.md b/README-EN.md index d899a25..49c6b56 100644 --- a/README-EN.md +++ b/README-EN.md @@ -30,7 +30,7 @@ connection console.log(JSON.stringify(data, null, 2)); }) .catch(error => { - // TODO Error + console.error(error); }); // Execute with scalar @@ -40,7 +40,7 @@ connection console.log(JSON.stringify(data, null, 2)); }) .catch(error => { - // TODO Error + console.error(error); }); // Query @@ -50,7 +50,7 @@ connection console.log(JSON.stringify(data, null, 2)); }) .catch(error => { - // TODO Error + console.error(error); }); // Schema @@ -60,7 +60,7 @@ connection console.log(JSON.stringify(schema, null, 2)); }) .catch(error => { - // TODO Error + console.error(error); }); ``` diff --git a/README.md b/README.md index 032009f..e59dc9e 100644 --- a/README.md +++ b/README.md @@ -30,7 +30,7 @@ connection console.log(JSON.stringify(data, null, 2)); }) .catch(error => { - // TODO 逻辑处理 + console.error(error); }); // 带返回标识的执行 @@ -40,7 +40,7 @@ connection console.log(JSON.stringify(data, null, 2)); }) .catch(error => { - // TODO 逻辑处理 + console.error(error); }); // 带返回的查询 @@ -50,7 +50,7 @@ connection console.log(JSON.stringify(data, null, 2)); }) .catch(error => { - // TODO 逻辑处理 + console.error(error); }); // 带字段描述的查询 @@ -60,7 +60,7 @@ connection console.log(JSON.stringify(schema, null, 2)); }) .catch(error => { - // TODO 逻辑处理 + console.error(error); }); ```