File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
ktorm-global/src/main/kotlin/org/ktorm/global Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -313,7 +313,7 @@ employee.salary = 100
313313employee.flushChanges()
314314```
315315
316- Delete a entity from database:
316+ Delete an entity from database:
317317
318318``` kotlin
319319val employee = database.employees.find { it.id eq 2 } ? : return
Original file line number Diff line number Diff line change @@ -66,7 +66,7 @@ public fun <E : Entity<E>> Table<E>.updateEntity(entity: E): Int {
6666}
6767
6868/* *
69- * Obtain a entity object matching the given [predicate], auto left joining all the reference tables.
69+ * Obtain an entity object matching the given [predicate], auto left joining all the reference tables.
7070 */
7171@Deprecated(" ktorm-global will be removed in the future, please migrate to the standard API." )
7272public inline fun <E : Any , T : BaseTable <E >> T.findOne (predicate : (T ) -> ColumnDeclaring <Boolean >): E ? {
You can’t perform that action at this time.
0 commit comments