Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
ianharrigan authored Jan 31, 2024
1 parent 6736b0e commit 838caf1
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 @@ -48,7 +48,7 @@ db.connect().then(result -> {
return result.table.add(record);
}).then(result -> {
DebugUtils.printRecords([result.data]);
return resut.table.all();
return result.table.all();
}).then(result -> {
DebugUtils.printRecords(result.data);
return result.table.findOne(query($FirstName = "Ian" && $LastName = "Harrigan")); // "find" will return an array of records instead
Expand Down

0 comments on commit 838caf1

Please sign in to comment.