Skip to content

Commit

Permalink
📝 Update docs
Browse files Browse the repository at this point in the history
  • Loading branch information
nuintun committed Dec 28, 2017
1 parent e10ca15 commit 47aa093
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
8 changes: 4 additions & 4 deletions README-EN.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ connection
console.log(JSON.stringify(data, null, 2));
})
.catch(error => {
// TODO Error
console.error(error);
});

// Execute with scalar
Expand All @@ -40,7 +40,7 @@ connection
console.log(JSON.stringify(data, null, 2));
})
.catch(error => {
// TODO Error
console.error(error);
});

// Query
Expand All @@ -50,7 +50,7 @@ connection
console.log(JSON.stringify(data, null, 2));
})
.catch(error => {
// TODO Error
console.error(error);
});

// Schema
Expand All @@ -60,7 +60,7 @@ connection
console.log(JSON.stringify(schema, null, 2));
})
.catch(error => {
// TODO Error
console.error(error);
});
```

Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ connection
console.log(JSON.stringify(data, null, 2));
})
.catch(error => {
// TODO 逻辑处理
console.error(error);
});

// 带返回标识的执行
Expand All @@ -40,7 +40,7 @@ connection
console.log(JSON.stringify(data, null, 2));
})
.catch(error => {
// TODO 逻辑处理
console.error(error);
});

// 带返回的查询
Expand All @@ -50,7 +50,7 @@ connection
console.log(JSON.stringify(data, null, 2));
})
.catch(error => {
// TODO 逻辑处理
console.error(error);
});

// 带字段描述的查询
Expand All @@ -60,7 +60,7 @@ connection
console.log(JSON.stringify(schema, null, 2));
})
.catch(error => {
// TODO 逻辑处理
console.error(error);
});
```

Expand Down

0 comments on commit 47aa093

Please sign in to comment.