diff --git a/jOOQ/src/main/java/org/jooq/DSLContext.java b/jOOQ/src/main/java/org/jooq/DSLContext.java
index fd1adc7cd6..c05b29a409 100644
--- a/jOOQ/src/main/java/org/jooq/DSLContext.java
+++ b/jOOQ/src/main/java/org/jooq/DSLContext.java
@@ -2931,7 +2931,7 @@ public interface DSLContext {
// [jooq-tools] END [selectDistinct]
/**
- * Create a new DSL select statement for constant 0 literal
+ * Create a new DSL select statement for a constant 0 literal.
*
* This creates an attached, renderable and executable
* This creates an attached, renderable and executable
* This creates an attached, renderable and executable
+ * This type of insert may feel more convenient to some users, as it uses
+ * the
* Example: SELECT
* statement from this {@link DSLContext}. If you don't need to render or
@@ -2959,7 +2959,7 @@ public interface DSLContext {
SelectSelectStep1 literal
+ * Create a new DSL select statement for a constant 1 literal.
* SELECT
* statement from this {@link DSLContext}. If you don't need to render or
@@ -2987,7 +2987,7 @@ public interface DSLContext {
SelectSelectStepCOUNT(*)
+ * Create a new DSL select statement for COUNT(*).
* SELECT
* statement from this {@link DSLContext}. If you don't need to render or
@@ -3038,9 +3038,10 @@ public interface DSLContext {
UPDATE statement's
- * SET a = b syntax.
+ * Create a new DSL insert statement.
+ * UPDATE statement's SET a = b syntax.
*
* DSLContext create = DSL.using(configuration);