Skip to content

Commit

Permalink
Javadoc improvements
Browse files Browse the repository at this point in the history
  • Loading branch information
joel-costigliola committed Jan 1, 2022
1 parent ab9cb22 commit 35bed61
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -1307,9 +1307,9 @@ public SELF withErrorMessageForFields(String message, String... fieldLocations)
* }
*
* TolkienCharacter frodo = new TolkienCharacter("Frodo", 1.2);
* TolkienCharacter tallerFrodo = new TolkienCharacter("Frodo", 1.4);
* TolkienCharacter tallerFrodo = new TolkienCharacter("Frodon", 1.4);
*
* String message = "The field 'height' double differ.";
* String message = "Double field differ.";
*
* // assertion fails
* assertThat(frodo).usingRecursiveComparison()
Expand All @@ -1323,7 +1323,7 @@ public SELF withErrorMessageForFields(String message, String... fieldLocations)
* TolkienCharacter [name=Frodon, height=1.4]
* when recursively comparing field by field, but found the following 2 differences:
*
* The field 'height' double differ.
* Double field differ.
*
* field/property 'name' differ:
* - actual value : "Frodo"
Expand Down

0 comments on commit 35bed61

Please sign in to comment.