Change backReferencedOn to referrersOn in comment

This commit is contained in:
Johan Vergeer
2018-04-15 19:16:03 +02:00
committed by Andrey.Tarashevskiy
parent df57cead03
commit 28c5229c5d

2
DAO.md
View File

@@ -130,7 +130,7 @@ class StarWarsFilm(id: EntityID<Int>) : IntEntity(id) {
companion object : IntEntityClass<StarWarsFilm>(StarWarsFilms)
...
val ratings by UserRating referrersOn UserRatings.film // make sure to use val and backReferencedOn
val ratings by UserRating referrersOn UserRatings.film // make sure to use val and referrersOn
...
}
```