Fix typo.

This commit is contained in:
Kevin Elliott 2019-12-03 12:15:25 -08:00 committed by GitHub
parent 68515adfbf
commit 1d6e118dbf
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 @serializable
@orm @orm
abstract class _Author extends Model { abstract class _Author extends Model {
@hasMany // Use the defaults, and auto-compute `foreignKey` @HasMany // Use the defaults, and auto-compute `foreignKey`
List<_Book> books; List<_Book> books;
// Also supports parameters... // Also supports parameters...