From 1d6e118dbf217293386333094ff4cb873ed4c093 Mon Sep 17 00:00:00 2001 From: Kevin Elliott Date: Tue, 3 Dec 2019 12:15:25 -0800 Subject: [PATCH] Fix typo. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index abab1df6..8c2dc7a8 100644 --- a/README.md +++ b/README.md @@ -155,7 +155,7 @@ with custom parameters (ex. `@HasOne(foreignKey: 'foreign_id')`). @serializable @orm abstract class _Author extends Model { - @hasMany // Use the defaults, and auto-compute `foreignKey` + @HasMany // Use the defaults, and auto-compute `foreignKey` List<_Book> books; // Also supports parameters...