From 125cdd858aadb07c05e72060ab5ceeb268711229 Mon Sep 17 00:00:00 2001 From: Lukas Eder Date: Fri, 4 Oct 2013 16:40:53 +0200 Subject: [PATCH] [#2766] Javadoc typo on DSLContext.batchDelete() --- jOOQ/src/main/java/org/jooq/DSLContext.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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: