Skip to content

Commit

Permalink
Minor javadoc improvements
Browse files Browse the repository at this point in the history
  • Loading branch information
joel-costigliola committed Oct 24, 2019
1 parent 1038d72 commit 43ed5c1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main/java/org/assertj/core/api/AbstractFileAssert.java
Original file line number Diff line number Diff line change
Expand Up @@ -992,7 +992,7 @@ public SELF isNotEmptyDirectory() {
}

/**
* Verify that the actual {@code File} is empty (i.e. size is equal to zero bytes).
* Verify that the actual {@code File} is empty (i.e. the file size = 0).
* <p>
* Example:
* <pre><code class='java'> File file = File.createTempFile(&quot;tmp&quot;, &quot;txt&quot;);
Expand All @@ -1017,7 +1017,7 @@ public SELF isEmpty() {
}

/**
* Verify that the actual {@code File} is not empty (i.e. size is greater than zero bytes).
* Verify that the actual {@code File} is not empty (i.e. the file size > 0).
* <p>
* Example:
* <pre><code class='java'> File file = File.createTempFile(&quot;tmp&quot;, &quot;txt&quot;);
Expand Down

0 comments on commit 43ed5c1

Please sign in to comment.