Skip to content

Commit

Permalink
readme update
Browse files Browse the repository at this point in the history
  • Loading branch information
exe-dealer committed Jul 15, 2022
1 parent 5042c43 commit 12826ad
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -232,7 +232,7 @@ If statement is `COPY ... FROM STDIN` then `stdin` parameter must be set.
```js
async function * generateData() {
const utf8enc = new TextEncoder();
for (let i = 1; i <= 2; i++) {
for (let i = 1; i <= 3; i++) {
yield utf8enc.encode(i + '\t' + 'Mississipi' + '\n');
}
}
Expand Down

0 comments on commit 12826ad

Please sign in to comment.