Skip to content

Commit

Permalink
docs: fix typos in foreignKey documentation (#2077)
Browse files Browse the repository at this point in the history
  • Loading branch information
plplmax committed May 9, 2024
1 parent 647a1b3 commit df60b06
Showing 1 changed file with 2 additions and 2 deletions.
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

0 comments on commit df60b06

Please sign in to comment.