Skip to content

Commit 704e54f

Browse files
committed
Fix and improve JavaDoc based on review comments.
See #1009 Original pull request #1014
1 parent 6e626ab commit 704e54f

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

+3-3
Original file line numberDiff line numberDiff line change
@@ -504,10 +504,10 @@ interface SelectOn {
504504
/**
505505
* Declare a join condition in one step.
506506
*
507-
* 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`.
507+
* Using conditions allows more flexibility in comparison to {@link #on(Expression)} which only allows for equality comparisons chained together with `AND`.
508508
*
509-
* @param condition Must not be {@literal null}.
510-
* @return @return {@code this} builder.
509+
* @param condition must not be {@literal null}.
510+
* @return {@code this} builder.
511511
* @see Conditions
512512
*/
513513
SelectFromAndJoinCondition on(Condition condition);

0 commit comments

Comments
 (0)