Skip to content

Commit 1bcc905

Browse files
fix typo
1 parent c31b425 commit 1bcc905

File tree

5 files changed

+7
-7
lines changed

5 files changed

+7
-7
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -260,7 +260,7 @@ object Employees : Table<Employee>("t_employee") {
260260
}
261261
```
262262

263-
> Naming Strategy: It's highly recommended to name your entity classes by singular nouns, name table objects by plurals (eg. Employee/Employees, Department/Departments).
263+
> Naming Strategy: It's highly recommended to name your entity classes by singular nouns, name table objects by plurals (e.g. Employee/Employees, Department/Departments).
264264
265265
Now that column bindings are configured, so we can use [sequence APIs](#Entity-Sequence-APIs) to perform many operations on entities. Let's add two extension properties for `Database` first. These properties return new created sequence objects via `sequenceOf` and they can help us improve the readability of the code:
266266

ktorm-core/src/main/kotlin/org/ktorm/database/Database.kt

+1-1
Original file line numberDiff line numberDiff line change
@@ -147,7 +147,7 @@ public class Database(
147147
public val name: String
148148

149149
/**
150-
* The name of the connected database product, eg. MySQL, H2.
150+
* The name of the connected database product, e.g. MySQL, H2.
151151
*/
152152
public val productName: String
153153

ktorm-core/src/main/kotlin/org/ktorm/expression/SqlExpressions.kt

+3-3
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ public abstract class SqlExpression {
5252
}
5353

5454
/**
55-
* Base class of scalar expressions. An expression is "scalar" if it has a return value (eg. `a + 1`).
55+
* Base class of scalar expressions. An expression is "scalar" if it has a return value (e.g. `a + 1`).
5656
*
5757
* @param T the return value's type of this scalar expression.
5858
*/
@@ -85,7 +85,7 @@ public abstract class QuerySourceExpression : SqlExpression()
8585
* @property orderBy a list of order-by expressions, used in the `order by` clause of a query.
8686
* @property offset the offset of the first returned record.
8787
* @property limit max record numbers returned by the query.
88-
* @property tableAlias the alias when this query is nested in another query's source, eg. `select * from (...) alias`.
88+
* @property tableAlias the alias when this query is nested in another query's source, e.g. `select * from (...) alias`.
8989
*/
9090
public sealed class QueryExpression : QuerySourceExpression() {
9191
public abstract val orderBy: List<OrderByExpression>
@@ -151,7 +151,7 @@ public data class InsertExpression(
151151
) : SqlExpression()
152152

153153
/**
154-
* Insert-from-query expression, eg. `insert into tmp(num) select 1 from dual`.
154+
* Insert-from-query expression, e.g. `insert into tmp(num) select 1 from dual`.
155155
*
156156
* @property table the table to be inserted.
157157
* @property columns the columns to be inserted.

ktorm-core/src/main/kotlin/org/ktorm/schema/Column.kt

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ import kotlin.reflect.KProperty1
2929
public sealed class ColumnBinding
3030

3131
/**
32-
* Bind the column to nested properties, eg. `employee.manager.department.id`.
32+
* Bind the column to nested properties, e.g. `employee.manager.department.id`.
3333
*
3434
* @property properties the nested properties, cannot be empty.
3535
*/

ktorm-core/src/main/kotlin/org/ktorm/schema/Table.kt

+1-1
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ public open class Table<E : Entity<E>>(
5656
) : BaseTable<E>(tableName, alias, catalog, schema, entityClass) {
5757

5858
/**
59-
* Bind the column to nested properties, eg. `employee.manager.department.id`.
59+
* Bind the column to nested properties, e.g. `employee.manager.department.id`.
6060
*
6161
* Note: Since [Column] is immutable, this function will create a new [Column] instance and replace the origin
6262
* registered one.

0 commit comments

Comments
 (0)