Skip to content

Commit dd64d12

Browse files
committed
fix readme
1 parent 29561d6 commit dd64d12

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/ci.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212

1313
strategy:
1414
matrix:
15-
node-version: [16.x, 18.x, 19.x]
15+
node-version: [16.x, 18.x, 19.x, 20.x]
1616

1717
steps:
1818
- uses: actions/checkout@v3

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -65,8 +65,8 @@ yarn start
6565
```typescript
6666
import WsJsonClient from "tda-wsjson-client/wsJsonClient";
6767

68-
const client = new WsJsonClient(accessToken);
69-
await client.authenticate();
68+
const client = new WsJsonClient();
69+
await client.authenticate(accessToken);
7070
console.log(loginResponse);
7171
const chartRequest = {
7272
symbol: "UBER",

0 commit comments

Comments
 (0)