Skip to content

Commit b46f341

Browse files
author
Stephen Colebourne
committed
FileSystemUtils.freeSpaceKb javadoc fix
git-svn-id: https://svn.apache.org/repos/asf/jakarta/commons/proper/io/trunk@383201 13f79535-47bb-0310-9956-ffa450edef68
1 parent d9f56ff commit b46f341

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

src/java/org/apache/commons/io/FileSystemUtils.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ public FileSystemUtils() {
105105
* <p>
106106
* Note that some OS's are NOT currently supported, including OS/390.
107107
* <pre>
108-
* FileSystemUtils.freeSpace("C:"); // Windows
108+
* FileSystemUtils.freeSpace("C:"); // Windows
109109
* FileSystemUtils.freeSpace("/volume"); // *nix
110110
* </pre>
111111
* The free space is calculated via the command line.
@@ -127,8 +127,8 @@ public static long freeSpace(String path) throws IOException {
127127
* the command line.
128128
* Note that some OS's are NOT currently supported, including OS/390.
129129
* <pre>
130-
* FileSystemUtils.freeSpace("C:"); // Windows
131-
* FileSystemUtils.freeSpace("/volume"); // *nix
130+
* FileSystemUtils.freeSpaceKb("C:"); // Windows
131+
* FileSystemUtils.freeSpaceKb("/volume"); // *nix
132132
* </pre>
133133
* The free space is calculated via the command line.
134134
* It uses 'dir /-c' on Windows and 'df -k' on *nix.

0 commit comments

Comments
 (0)