diff --git a/jOOQ/src/main/java/org/jooq/DeleteResultStep.java b/jOOQ/src/main/java/org/jooq/DeleteResultStep.java index 12660cd430..db7e397277 100644 --- a/jOOQ/src/main/java/org/jooq/DeleteResultStep.java +++ b/jOOQ/src/main/java/org/jooq/DeleteResultStep.java @@ -68,10 +68,10 @@ public interface DeleteResultStep extends Delete { /** * The result holding returned values as specified by the - * {@link UpdateReturningStep}. + * {@link DeleteReturningStep}. * * @return The returned values as specified by the - * {@link UpdateReturningStep}. Note: + * {@link DeleteReturningStep}. Note: * * @throws DataAccessException if something went wrong executing the query - * @see UpdateQuery#getReturnedRecords() + * @see DeleteQuery#getReturnedRecords() */ @Support({ FIREBIRD, POSTGRES }) Result fetch() throws DataAccessException; /** * The record holding returned values as specified by the - * {@link UpdateReturningStep}. + * {@link DeleteReturningStep}. * * @return The returned value as specified by the - * {@link UpdateReturningStep}. This may return null in + * {@link DeleteReturningStep}. This may return null in * case jOOQ could not retrieve any generated keys from the JDBC * driver. * @throws DataAccessException if something went wrong executing the query - * @see UpdateQuery#getReturnedRecord() + * @see DeleteQuery#getReturnedRecord() */ @Support({ FIREBIRD, POSTGRES }) R fetchOne() throws DataAccessException; @@ -101,12 +101,12 @@ public interface DeleteResultStep extends Delete { /** * The record holding returned values as specified by the - * {@link UpdateReturningStep}. + * {@link DeleteReturningStep}. * * @return The returned value as specified by the - * {@link UpdateReturningStep} + * {@link DeleteReturningStep} * @throws DataAccessException if something went wrong executing the query - * @see UpdateQuery#getReturnedRecord() + * @see DeleteQuery#getReturnedRecord() */ @Support({ FIREBIRD, POSTGRES }) Optional fetchOptional() throws DataAccessException;