Skip to content

Commit f65a5a8

Browse files
committed
Fix Javadoc on AssertOnRowCondition
1 parent 285ddd6 commit f65a5a8

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/main/java/org/assertj/db/api/assertions/AssertOnRowCondition.java

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -32,22 +32,22 @@ public interface AssertOnRowCondition<T extends AssertOnRowCondition<T>> {
3232
* </p>
3333
*
3434
* <pre><code class='java'>
35-
* assertThat(table).row().hasValuesSatisfying(new Condition<String>(v -> v.equals("Weaver"), "isWeaver"));
35+
* assertThat(table).row().hasValuesSatisfying(new Condition&lt;String&gt;(v -&gt; v.equals("Weaver"), "isWeaver"));
3636
* </code></pre>
3737
* <p>
3838
* Example where the assertion verifies that the values of the row at end point of the first change are equal to the
3939
* values in parameter :
4040
* </p>
4141
*
4242
* <pre><code class='java'>
43-
* assertThat(changes).change().rowAtEndPoint().hasValuesSatisfying(new Condition<String>(v -> v.equals("Weaver"), "isWeaver"));
43+
* assertThat(changes).change().rowAtEndPoint().hasValuesSatisfying(new Condition&lt;String&gt;(v -&gt; v.equals("Weaver"), "isWeaver"));
4444
* </code></pre>
4545
*
4646
* @param expected The expected conditions.
4747
* @return {@code this} assertion object.
4848
* @throws AssertionError If the values of the row are not satisfy to the conditions in parameters.
49-
* @see org.assertj.db.api.AbstractRowAssert#hasValuesSatisfying(Condition)
50-
* @see org.assertj.db.api.ChangeRowAssert#hasValuesSatisfying(Condition)
49+
* @see org.assertj.db.api.AbstractRowAssert#hasValuesSatisfying(Object...)
50+
* @see org.assertj.db.api.ChangeRowAssert#hasValuesSatisfying(Object...)
5151
*/
5252
T hasValuesSatisfying(Object... expected);
5353
}

0 commit comments

Comments
 (0)