Skip to content

Commit

Permalink
Typo in readme
Browse files Browse the repository at this point in the history
  • Loading branch information
lroal committed Oct 19, 2023
1 parent 2576c38 commit 618a8d3
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 @@ -75,7 +75,7 @@ const map = rdb.map(x => ({
order: x.order.map(v => ({
customer: v.references(x.customer).by('customerId'),
lines: v.hasMany(x.orderLine).by('orderId'),
deliveryAddress: hasOne(x.deliveryAddress).by('orderId'),
deliveryAddress: v.hasOne(x.deliveryAddress).by('orderId'),
}))
}));

Expand Down

0 comments on commit 618a8d3

Please sign in to comment.