diff --git a/jOOQ/src/main/java/org/jooq/impl/QOM.java b/jOOQ/src/main/java/org/jooq/impl/QOM.java index 3a523b326a..1e406c5824 100644 --- a/jOOQ/src/main/java/org/jooq/impl/QOM.java +++ b/jOOQ/src/main/java/org/jooq/impl/QOM.java @@ -3078,9 +3078,9 @@ public final class QOM { * Create a condition to case-insensitively pattern-check this field against * a value. *
- * This translates to this not ilike value in
+ * This translates to this ilike value in
* {@link SQLDialect#POSTGRES}, or to
- * lower(this) not like lower(value) in all other dialects.
+ * lower(this) like lower(value) in all other dialects.
*/
public /*sealed*/ interface LikeIgnoreCase
extends
@@ -4735,7 +4735,7 @@ public final class QOM {
* This translates to
* this ilike ('%' || escape(value, '\') || '%') escape '\' in
* {@link SQLDialect#POSTGRES}, or to
- * lower(this) not like lower(('%' || escape(value, '\') || '%') escape '\')
+ * lower(this) like lower(('%' || escape(value, '\') || '%') escape '\')
* in all other dialects.
*/
public /*sealed*/ interface ContainsIgnoreCase