Skip to content

Commit d4bfb6f

Browse files
committed
Javadoc
1 parent a495557 commit d4bfb6f

3 files changed

Lines changed: 5 additions & 6 deletions

File tree

src/main/java/org/apache/commons/io/FileSystem.java

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -32,11 +32,10 @@
3232
import java.util.Objects;
3333

3434
/**
35-
* Abstracts an OS' file system details, currently supporting the single use case of converting a file name String to a
36-
* legal file name with {@link #toLegalFileName(String, char)}.
35+
* Enumerates file system details for operating systems, currently supporting the single use case of converting a file name String to a legal file name with
36+
* {@link #toLegalFileName(String, char)}.
3737
* <p>
38-
* The starting point of any operation is {@link #getCurrent()} which gets you the enum for the file system that matches
39-
* the OS hosting the running JVM.
38+
* The starting point of any operation is {@link #getCurrent()} which gets you the enum for the file system that matches the OS hosting the running JVM.
4039
* </p>
4140
*
4241
* @since 2.7

src/main/java/org/apache/commons/io/IOCase.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
import java.util.stream.Stream;
2222

2323
/**
24-
* Enumeration of IO case sensitivity.
24+
* Enumerates IO case sensitivity types.
2525
* <p>
2626
* Different filing systems have different rules for case-sensitivity.
2727
* Windows is case-insensitive, Unix is case-sensitive.

src/main/java/org/apache/commons/io/file/StandardDeleteOption.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
import org.apache.commons.io.IOUtils;
2323

2424
/**
25-
* Defines the standard delete options.
25+
* Enumerates the standard delete options.
2626
*
2727
* @since 2.8.0
2828
*/

0 commit comments

Comments
 (0)