Skip to content

Commit 71327a9

Browse files
authored
Fix typo in examples/SQL.md
1 parent 97966d2 commit 71327a9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

examples/SQL.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ const userLoader = new DataLoader(ids => new Promise((resolve, reject) => {
1818
reject(error);
1919
} else {
2020
resolve(ids.map(
21-
id => rows.find(row => rows.id === id) || new Error(`Row not found: ${id}`)
21+
id => rows.find(row => row.id === id) || new Error(`Row not found: ${id}`)
2222
));
2323
}
2424
});

0 commit comments

Comments
 (0)