Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs: fix typos in foreignKey documentation #2077

Merged
merged 1 commit into from
May 9, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -1245,7 +1245,7 @@ open class Table(name: String = "") : ColumnSet(), DdlAware {
* Their order should match the order of columns in the referenced parent table's primary key.
* @param target Primary key of the referenced parent table.
* @param onUpdate [ReferenceOption] when performing update operations.
* @param onUpdate [ReferenceOption] when performing delete operations.
* @param onDelete [ReferenceOption] when performing delete operations.
* @param name Custom foreign key constraint name.
* @sample org.jetbrains.exposed.sql.tests.shared.ddl.CreateMissingTablesAndColumnsTests.CompositeForeignKeyTable
*/
Expand All @@ -1272,7 +1272,7 @@ open class Table(name: String = "") : ColumnSet(), DdlAware {
* All referencing columns must belong to this table.
* All referenced columns must belong to the same table.
* @param onUpdate [ReferenceOption] when performing update operations.
* @param onUpdate [ReferenceOption] when performing delete operations.
* @param onDelete [ReferenceOption] when performing delete operations.
* @param name Custom foreign key constraint name.
* @sample org.jetbrains.exposed.sql.tests.shared.DDLTests.testCompositeFKReferencingUniqueIndex
*/
Expand Down
Loading