You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by gg...@apache.org on 2021/11/07 03:03:04 UTC

[commons-io] branch master updated: Fix typo in comment.

This is an automated email from the ASF dual-hosted git repository.

ggregory pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/commons-io.git


The following commit(s) were added to refs/heads/master by this push:
     new f126b02  Fix typo in comment.
f126b02 is described below

commit f126b022a8e15632cf4151d334dc77b9e63b4496
Author: Gary Gregory <ga...@gmail.com>
AuthorDate: Sat Nov 6 23:03:02 2021 -0400

    Fix typo in comment.
---
 src/test/java/org/apache/commons/io/FileUtilsTest.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/test/java/org/apache/commons/io/FileUtilsTest.java b/src/test/java/org/apache/commons/io/FileUtilsTest.java
index 4875a49..5d13cf1 100644
--- a/src/test/java/org/apache/commons/io/FileUtilsTest.java
+++ b/src/test/java/org/apache/commons/io/FileUtilsTest.java
@@ -1482,7 +1482,7 @@ public class FileUtilsTest {
         assertTrue(destination.setReadOnly());
         assertTrue(destination.canRead());
         assertFalse(destination.canWrite());
-        // sanity check that File.delete() in deletes read-only files.
+        // sanity check that File.delete() deletes read-only files.
         assertTrue(destination.delete());
         destination = File.createTempFile("test-", ".txt");
         // real test