Skip to content

Commit

Permalink
Merge pull request #5 from magichim/master
Browse files Browse the repository at this point in the history
Some typo mistake fixed.
  • Loading branch information
manyuanrong authored Jan 6, 2020
2 parents 663d999 + b665ac2 commit 75de74f
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ async function main() {
hostname: "127.0.0.1",
port: 3306,
username: "root",
passwod: "",
password: "",
db: "dbname"
});

Expand Down Expand Up @@ -88,7 +88,7 @@ await dso.connect({
hostname: "127.0.0.1", // database hostname
port: 3306, // database port
username: "root", // database username
passwod: "", // database password
password: "", // database password
db: "dbname" // database name. (tips: The database must be created before linking)
});
```
Expand Down
2 changes: 1 addition & 1 deletion deps.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
export { assert, assertEquals, assertThrowsAsync } from "https://deno.land/std@v0.24.0/testing/asserts.ts";
export { runTests, test, TestFunction } from "https://deno.land/std@v0.24.0/testing/mod.ts";
export { Client, ClientConfig, Connection } from "https://deno.land/x/mysql@1.4.0/mod.ts";
export { Client, ClientConfig, Connection } from "https://deno.land/x/mysql@1.4.1/mod.ts";
export { Join, Order, Query, replaceParams, Where } from "https://deno.land/x/sql_builder@1.3.5/mod.ts";

import "./src/Reflect.ts";
2 changes: 1 addition & 1 deletion test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ async function main() {
const config = {
hostname: "127.0.0.1",
port: 3306,
pool: 3,
poolSize: 3,
debug: false,
username: "root",
password: "",
Expand Down

0 comments on commit 75de74f

Please sign in to comment.