From 066bf2cb7f5fba2f20a8f74c70ed66895ab609d6 Mon Sep 17 00:00:00 2001 From: Ben Ashton Date: Fri, 5 Mar 2021 15:27:12 -0800 Subject: [PATCH] Reworded README --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 0e9c6f1..24de470 100644 --- a/README.md +++ b/README.md @@ -122,7 +122,7 @@ await db.autoTransaction(async (tx) => { ### Recommended Approach to Model Classes -Supposing we have two tables in our database. The first table `contacts` contains rows of contact names. The second table `numbers` contains rows of numbers and foreign keys for contact ids. We could model the above database like this: +Supposing we have two tables in our database. The first table `contacts` contains rows of contact names. The second table `numbers` contains rows of numbers and foreign keys for contact ids. We could model that database like this: ```javascript class NumberModel {