Skip to content

Commit

Permalink
Fix incorrect JavaDocs for PathFileObjectAssert.java
Browse files Browse the repository at this point in the history
Signed-off-by: Ashley <[email protected]>
  • Loading branch information
ascopes authored Jul 27, 2024
1 parent 0f830da commit 8f42416
Showing 1 changed file with 6 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,10 @@ public PathFileObjectAssert(@Nullable PathFileObject actual) {
}

/**
* Perform an assertion on the file object's full path.
* Perform an assertion on the file object's relative path.
*
* <p>The path is relative to the base directory holding all the
* sources relative to their package names.
*
* @return the assertions for the path.
* @throws AssertionError if the file object is null.
Expand All @@ -57,6 +60,8 @@ public AbstractPathAssert<?> relativePath() {
/**
* Perform an assertion on the file object's absolute path.
*
* <p>You generally should prefer using {@link #relativePath}.
*
* @return the assertions for the path.
* @throws AssertionError if the file object is null.
*/
Expand Down

0 comments on commit 8f42416

Please sign in to comment.