Author: niallp
Date: Mon Aug 11 04:47:43 2008
New Revision: 684725
URL: http://svn.apache.org/viewvc?rev=684725&view=rev
Log:
Javadoc changes
Modified:
commons/proper/io/trunk/src/java/org/apache/commons/io/FileUtils.java
Modified: commons/proper/io/trunk/src/java/org/apache/commons/io/FileUtils.java
URL:
http://svn.apache.org/viewvc/commons/proper/io/trunk/src/java/org/apache/commons/io/FileUtils.java?rev=684725&r1=684724&r2=684725&view=diff
==============================================================================
--- commons/proper/io/trunk/src/java/org/apache/commons/io/FileUtils.java
(original)
+++ commons/proper/io/trunk/src/java/org/apache/commons/io/FileUtils.java Mon
Aug 11 04:47:43 2008
@@ -1927,13 +1927,15 @@
}
/**
- * Determines whether the specified file is a link rather than an actual
file.
- * Will not return true if there is a symlink anywhere in the path, only
if the specific file is.
+ * Determines whether the specified file is a Symbolic Link rather than an
actual file.
+ * <p>
+ * Will not return true if there is a Symbolic Link anywhere in the path,
+ * only if the specific file is.
*
* @param file the file to check
- * @return true iff the file is a symlink
+ * @return true if the file is a Symbolic Link
* @throws IOException if an IO error occurs while checking the file
- * @since 2.0
+ * @since IO 2.0
*/
public static boolean isSymlink(File file) throws IOException {
if (file == null) {