diff --git a/jOOQ/src/main/java/org/jooq/TableOnStep.java b/jOOQ/src/main/java/org/jooq/TableOnStep.java
index 67636928c6..2eea544e5b 100644
--- a/jOOQ/src/main/java/org/jooq/TableOnStep.java
+++ b/jOOQ/src/main/java/org/jooq/TableOnStep.java
@@ -44,20 +44,20 @@ import org.jooq.impl.DSL;
* An intermediate type for the construction of a JOIN clause,
* where there must be a join criteria added using an ON clause
* (with a {@link Condition}), or using a USING clause (with a list
- * of {@link Field})
+ * of {@link Field}).
*
* @author Lukas Eder
*/
public interface TableOnStep {
/**
- * Add an ON clause to the JOIN
+ * Add an ON clause to the JOIN.
*/
@Support
TableOnConditionStep on(Condition... conditions);
/**
- * Add an ON clause to the JOIN
+ * Add an ON clause to the JOIN.
*
* NOTE: When inserting plain SQL into jOOQ objects, you must
* guarantee syntax integrity. You may also create the possibility of
@@ -70,7 +70,7 @@ public interface TableOnStep {
TableOnConditionStep on(String sql);
/**
- * Add an ON clause to the JOIN
+ * Add an ON clause to the JOIN.
*
* NOTE: When inserting plain SQL into jOOQ objects, you must
* guarantee syntax integrity. You may also create the possibility of
@@ -83,7 +83,7 @@ public interface TableOnStep {
TableOnConditionStep on(String sql, Object... bindings);
/**
- * Add an ON clause to the JOIN
+ * Add an ON clause to the JOIN.
*
* NOTE: When inserting plain SQL into jOOQ objects, you must
* guarantee syntax integrity. You may also create the possibility of
@@ -96,7 +96,7 @@ public interface TableOnStep {
TableOnConditionStep on(String sql, QueryPart... parts);
/**
- * Join the table with the USING(column [, column...]) syntax
+ * Join a table with the USING(column [, column...]) syntax.
*
* If this is not supported by your RDBMS, then jOOQ will try to simulate
* this behaviour using the information provided in this query.
@@ -105,7 +105,7 @@ public interface TableOnStep {
Table
* If this is not supported by your RDBMS, then jOOQ will try to simulate
* this behaviour using the information provided in this query.
USING(column [, column...]) syntax
+ * Join a table with the USING(column [, column...]) syntax.
*