You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@harmony.apache.org by hi...@apache.org on 2008/09/10 14:47:00 UTC

svn commit: r693822 - /harmony/enhanced/classlib/trunk/modules/luni/src/main/java/java/io/File.java

Author: hindessm
Date: Wed Sep 10 05:46:59 2008
New Revision: 693822

URL: http://svn.apache.org/viewvc?rev=693822&view=rev
Log:
Trivial javadoc fix.

Modified:
    harmony/enhanced/classlib/trunk/modules/luni/src/main/java/java/io/File.java

Modified: harmony/enhanced/classlib/trunk/modules/luni/src/main/java/java/io/File.java
URL: http://svn.apache.org/viewvc/harmony/enhanced/classlib/trunk/modules/luni/src/main/java/java/io/File.java?rev=693822&r1=693821&r2=693822&view=diff
==============================================================================
--- harmony/enhanced/classlib/trunk/modules/luni/src/main/java/java/io/File.java (original)
+++ harmony/enhanced/classlib/trunk/modules/luni/src/main/java/java/io/File.java Wed Sep 10 05:46:59 2008
@@ -682,7 +682,7 @@
      * Answers if this File is an absolute pathname. Whether a pathname is
      * absolute is platform specific. On UNIX it is if the path starts with the
      * character '/', on Windows it is absolute if either it starts with '\',
-     * '/', '\\' (to represent a file server), or a letter followed by a colon.
+     * '/', '\\' (to represent a file server), or a letter followed by ':\'.
      * 
      * @return <code>true</code> if this File is absolute, <code>false</code>
      *         otherwise.