Merge pull request #98 from kevinelliott/patch-1

Fix typo.
This commit is contained in:
Tobe Osakwe 2019-12-03 15:25:02 -05:00 committed by GitHub
commit ceb58a25b5
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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...