diff --git a/jOOQ/src/main/java/org/jooq/DSLContext.java b/jOOQ/src/main/java/org/jooq/DSLContext.java index 2fce686342..2ab8deacce 100644 --- a/jOOQ/src/main/java/org/jooq/DSLContext.java +++ b/jOOQ/src/main/java/org/jooq/DSLContext.java @@ -4441,7 +4441,7 @@ public interface DSLContext { * The record type order is preserved in the way they are passed to this * method. This is an example of how statements will be ordered:
      * // Let's assume a[n] are all of the same type, just as b[n], c[n]...
-     * int[] result = create.batchStore(a1, a2, a3, b1, a4, c1, c2, a5)
+     * int[] result = create.batchDelete(a1, a2, a3, b1, a4, c1, c2, a5)
      *                      .execute();
      * 
The above results in result.length == 8 and * the following 5 separate batch statements: