diff --git a/jOOQ/src/main/java/org/jooq/SelectFromStep.java b/jOOQ/src/main/java/org/jooq/SelectFromStep.java index 49f1aa0666..19f29197e3 100644 --- a/jOOQ/src/main/java/org/jooq/SelectFromStep.java +++ b/jOOQ/src/main/java/org/jooq/SelectFromStep.java @@ -92,7 +92,7 @@ import org.jooq.impl.DSL; public interface SelectFromStep extends SelectWhereStep { /** - * Add a FROM clause to the query + * Add a FROM clause to the query. */ @Support @Transition( @@ -102,7 +102,7 @@ public interface SelectFromStep extends SelectWhereStep { SelectJoinStep from(TableLike... table); /** - * Add a FROM clause to the query + * Add a FROM clause to the query. */ @Support @Transition( @@ -112,7 +112,7 @@ public interface SelectFromStep extends SelectWhereStep { SelectJoinStep from(Collection> tables); /** - * Add a FROM clause to the query + * Add a FROM clause to the query. *

* NOTE: When inserting plain SQL into jOOQ objects, you must * guarantee syntax integrity. You may also create the possibility of @@ -125,7 +125,7 @@ public interface SelectFromStep extends SelectWhereStep { SelectJoinStep from(String sql); /** - * Add a FROM clause to the query + * Add a FROM clause to the query. *

* NOTE: When inserting plain SQL into jOOQ objects, you must * guarantee syntax integrity. You may also create the possibility of @@ -138,7 +138,7 @@ public interface SelectFromStep extends SelectWhereStep { SelectJoinStep from(String sql, Object... bindings); /** - * Add a FROM clause to the query + * Add a FROM clause to the query. *

* NOTE: When inserting plain SQL into jOOQ objects, you must * guarantee syntax integrity. You may also create the possibility of @@ -151,7 +151,7 @@ public interface SelectFromStep extends SelectWhereStep { SelectJoinStep from(String sql, QueryPart... parts); /** - * Add an Oracle-style hint to the preceding select clause + * Add an Oracle-style hint to the preceding select clause. *

* Example:

      * DSLContext create = DSL.using(configuration);