Skip to content

Commit 391293e

Browse files
schaudermp911de
authored andcommitted
Fix and improve JavaDoc based on review comments.
See #1009 Original pull request #1014
1 parent f1225a8 commit 391293e

File tree

1 file changed

+3
-3
lines changed
  • spring-data-relational/src/main/java/org/springframework/data/relational/core/sql

1 file changed

+3
-3
lines changed

spring-data-relational/src/main/java/org/springframework/data/relational/core/sql/SelectBuilder.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -505,10 +505,10 @@ interface SelectOn {
505505
/**
506506
* Declare a join condition in one step.
507507
*
508-
* This is harder to use but more flexible then the fluent style of {@link #on(Expression)} which only allows for equality comparisons chained together with `AND`.
508+
* Using conditions allows more flexibility in comparison to {@link #on(Expression)} which only allows for equality comparisons chained together with `AND`.
509509
*
510-
* @param condition Must not be {@literal null}.
511-
* @return @return {@code this} builder.
510+
* @param condition must not be {@literal null}.
511+
* @return {@code this} builder.
512512
* @see Conditions
513513
*/
514514
SelectFromAndJoinCondition on(Condition condition);

0 commit comments

Comments
 (0)