[#6238] Typo in AlterTableRenameConstraintToStep Javadoc

This commit is contained in:
lukaseder 2017-05-17 16:49:05 +02:00
parent dbadeab220
commit 88e92b85a9
2 changed files with 5 additions and 5 deletions

View File

@ -43,17 +43,17 @@ package org.jooq;
public interface AlterTableRenameConstraintToStep {
/**
* Specify a new column name.
* Specify a new constraint name.
*/
AlterTableFinalStep to(Constraint newName);
/**
* Specify a new column name.
* Specify a new constraint name.
*/
AlterTableFinalStep to(Name newName);
/**
* Specify a new column name.
* Specify a new constraint name.
*/
AlterTableFinalStep to(String newName);
}

View File

@ -1027,9 +1027,9 @@ public enum Clause {
* This clause surrounds
* <ul>
* <li>the <code>RENAME CONSTRAINT</code> keywords</li>
* <li>the old column name</li>
* <li>the old constraint name</li>
* <li>the <code>TO</code> keyword</li>
* <li>the new column name</li>
* <li>the new constraint name</li>
* </ul>
*/
ALTER_TABLE_RENAME_CONSTRAINT,