Skip to content

Commit 88a509f

Browse files
vvvctrojamin
authored andcommitted
Fix README.md code example (sql-js#556)
1 parent fcae718 commit 88a509f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -270,7 +270,7 @@ If you need ```BigInt``` support, it is partially supported since most browsers
270270
while (stmt.step()) console.log(stmt.get(null, config));
271271
272272
/*OR*/
273-
const result = db.exec("SELECT * FROM test", config);
273+
const results = db.exec("SELECT * FROM test", config);
274274
console.log(results[0].values)
275275
</script>
276276
```

0 commit comments

Comments
 (0)