Skip to content

Commit

Permalink
Fix javadoc references
Browse files Browse the repository at this point in the history
  • Loading branch information
scordio committed Aug 24, 2020
1 parent 424805b commit 6b8696b
Show file tree
Hide file tree
Showing 9 changed files with 9 additions and 9 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ public Boolean2DArrayAssert isDeepEqualTo(boolean[][] expected) {
* <p>
* <b>WARNING!</b> This method will use {@code equals} to compare (it will compare arrays references only).<br>
* Unless you specify a comparator with {@link #usingComparator(Comparator)}, it is advised to use
* {@link Boolean2DArrayAssert#isDeepEqualTo(Object)} instead.
* {@link #isDeepEqualTo(boolean[][])} instead.
* <p>
* Example:
* <pre><code class='java'> boolean[][] array = {{true, true}, {false, false}};
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/org/assertj/core/api/Byte2DArrayAssert.java
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ public Byte2DArrayAssert isDeepEqualTo(byte[][] expected) {
* <p>
* <b>WARNING!</b> This method will use {@code equals} to compare (it will compare arrays references only).<br>
* Unless you specify a comparator with {@link #usingComparator(Comparator)}, it is advised to use
* {@link Byte2DArrayAssert#isDeepEqualTo(Object)} instead.
* {@link #isDeepEqualTo(byte[][])} instead.
* <p>
* Example:
* <pre><code class='java'> byte[][] array = {{1, 2}, {3, 4}};
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/org/assertj/core/api/Char2DArrayAssert.java
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ public Char2DArrayAssert isDeepEqualTo(char[][] expected) {
* <p>
* <b>WARNING!</b> This method will use {@code equals} to compare (it will compare arrays references only).<br>
* Unless you specify a comparator with {@link #usingComparator(Comparator)}, it is advised to use
* {@link Char2DArrayAssert#isDeepEqualTo(Object)} instead.
* {@link #isDeepEqualTo(char[][])} instead.
* <p>
* Example:
* <pre><code class='java'> char[][] array = {{'1', '2'}, {'3', '4'}}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ public Double2DArrayAssert isDeepEqualTo(double[][] expected) {
* <p>
* <b>WARNING!</b> This method will use {@code equals} to compare (it will compare arrays references only).<br>
* Unless you specify a comparator with {@link #usingComparator(Comparator)}, it is advised to use
* {@link Double2DArrayAssert#isDeepEqualTo(Object)} instead.
* {@link #isDeepEqualTo(double[][])} instead.
* <p>
* Example:
* <pre><code class='java'> double[][] array = {{1.0, 2.0}, {3.0, 4.0}};
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/org/assertj/core/api/Float2DArrayAssert.java
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ public Float2DArrayAssert isDeepEqualTo(float[][] expected) {
* <p>
* <b>WARNING!</b> This method will use {@code equals} to compare (it will compare arrays references only).<br>
* Unless you specify a comparator with {@link #usingComparator(Comparator)}, it is advised to use
* {@link Double2DArrayAssert#isDeepEqualTo(Object)} instead.
* {@link #isDeepEqualTo(float[][])} instead.
* <p>
* Example:
* <pre><code class='java'> float[][] array = {{1.0f, 2.0f}, {3.0f, 4.0f}};
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/org/assertj/core/api/Int2DArrayAssert.java
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ public Int2DArrayAssert isDeepEqualTo(int[][] expected) {
* <p>
* <b>WARNING!</b> This method will use {@code equals} to compare (it will compare arrays references only).<br>
* Unless you specify a comparator with {@link #usingComparator(Comparator)}, it is advised to use
* {@link Int2DArrayAssert#isDeepEqualTo(Object)} instead.
* {@link #isDeepEqualTo(int[][])} instead.
* <p>
* Example:
* <pre><code class='java'> int[][] array = {{1, 2}, {3, 4}};
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/org/assertj/core/api/Long2DArrayAssert.java
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ public Long2DArrayAssert isDeepEqualTo(long[][] expected) {
* <p>
* <b>WARNING!</b> This method will use {@code equals} to compare (it will compare arrays references only).<br>
* Unless you specify a comparator with {@link #usingComparator(Comparator)}, it is advised to use
* {@link Long2DArrayAssert#isDeepEqualTo(Object)} instead.
* {@link #isDeepEqualTo(long[][])} instead.
* <p>
* Example:
* <pre><code class='java'> long[][] array = {{1, 2}, {3, 4}};
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ public Object2DArrayAssert<ELEMENT> isDeepEqualTo(ELEMENT[][] expected) {
* <p>
* <b>WARNING!</b> This method will use {@code equals} to compare (it will compare arrays references only).<br>
* Unless you specify a comparator with {@link #usingComparator(Comparator)}, it is advised to use
* {@link Object2DArrayAssert#isDeepEqualTo(Object)} instead.
* {@link #isDeepEqualTo(Object[][])} instead.
* <p>
* Example:
* <pre><code class='java'> String[][] array = {{"1", "2"}, {"3", "4"}};
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/org/assertj/core/api/Short2DArrayAssert.java
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ public Short2DArrayAssert isDeepEqualTo(short[][] expected) {
* <p>
* <b>WARNING!</b> This method will use {@code equals} to compare (it will compare arrays references only).<br>
* Unless you specify a comparator with {@link #usingComparator(Comparator)}, it is advised to use
* {@link Short2DArrayAssert#isDeepEqualTo(Object)} instead.
* {@link #isDeepEqualTo(short[][])} instead.
* <p>
* Example:
* <pre><code class='java'> short[][] array = {{1, 2}, {3, 4}};
Expand Down

0 comments on commit 6b8696b

Please sign in to comment.