Author: scolebourne
Date: Sat Mar  4 13:25:59 2006
New Revision: 383201

URL: http://svn.apache.org/viewcvs?rev=383201&view=rev
Log:
FileSystemUtils.freeSpaceKb javadoc fix

Modified:
    
jakarta/commons/proper/io/trunk/src/java/org/apache/commons/io/FileSystemUtils.java

Modified: 
jakarta/commons/proper/io/trunk/src/java/org/apache/commons/io/FileSystemUtils.java
URL: 
http://svn.apache.org/viewcvs/jakarta/commons/proper/io/trunk/src/java/org/apache/commons/io/FileSystemUtils.java?rev=383201&r1=383200&r2=383201&view=diff
==============================================================================
--- 
jakarta/commons/proper/io/trunk/src/java/org/apache/commons/io/FileSystemUtils.java
 (original)
+++ 
jakarta/commons/proper/io/trunk/src/java/org/apache/commons/io/FileSystemUtils.java
 Sat Mar  4 13:25:59 2006
@@ -105,7 +105,7 @@
      * <p>
      * Note that some OS's are NOT currently supported, including OS/390.
      * <pre>
-     * FileSystemUtils.freeSpace("C:");  // Windows
+     * FileSystemUtils.freeSpace("C:");       // Windows
      * FileSystemUtils.freeSpace("/volume");  // *nix
      * </pre>
      * The free space is calculated via the command line.
@@ -127,8 +127,8 @@
      * the command line.
      * Note that some OS's are NOT currently supported, including OS/390.
      * <pre>
-     * FileSystemUtils.freeSpace("C:");  // Windows
-     * FileSystemUtils.freeSpace("/volume");  // *nix
+     * FileSystemUtils.freeSpaceKb("C:");       // Windows
+     * FileSystemUtils.freeSpaceKb("/volume");  // *nix
      * </pre>
      * The free space is calculated via the command line.
      * It uses 'dir /-c' on Windows and 'df -k' on *nix.



---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to