From c5a1114ccd626379a6bbabaea6b250b6e6282d79 Mon Sep 17 00:00:00 2001 From: Lukas Eder Date: Tue, 2 Jul 2013 19:10:19 +0200 Subject: [PATCH] Minor Javadoc improvements --- jOOQ/src/main/java/org/jooq/DSLContext.java | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) 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 SELECT * statement from this {@link DSLContext}. If you don't need to render or @@ -2959,7 +2959,7 @@ public interface DSLContext { SelectSelectStep> selectZero(); /** - * Create a new DSL select statement for constant 1 literal + * Create a new DSL select statement for a constant 1 literal. *

* This creates an attached, renderable and executable SELECT * statement from this {@link DSLContext}. If you don't need to render or @@ -2987,7 +2987,7 @@ public interface DSLContext { SelectSelectStep> selectOne(); /** - * Create a new DSL select statement for COUNT(*) + * Create a new DSL select statement for COUNT(*). *

* This creates an attached, renderable and executable SELECT * statement from this {@link DSLContext}. If you don't need to render or @@ -3038,9 +3038,10 @@ public interface DSLContext { InsertQuery insertQuery(Table into); /** - * Create a new DSL insert statement. This type of insert may feel more - * convenient to some users, as it uses the UPDATE statement's - * SET a = b syntax. + * Create a new DSL insert statement. + *

+ * This type of insert may feel more convenient to some users, as it uses + * the UPDATE statement's SET a = b syntax. *

* Example:

      * DSLContext create = DSL.using(configuration);