diff --git a/src/main/org/apache/tools/ant/taskdefs/optional/unix/Symlink.java b/src/main/org/apache/tools/ant/taskdefs/optional/unix/Symlink.java
index 9095d415a..ff258c3dd 100644
--- a/src/main/org/apache/tools/ant/taskdefs/optional/unix/Symlink.java
+++ b/src/main/org/apache/tools/ant/taskdefs/optional/unix/Symlink.java
@@ -141,12 +141,12 @@ import org.apache.tools.ant.taskdefs.Execute;
* absolute paths. On non-unix systems this may cause false positives.
* Furthermore, any operating system on which the command
* ln -s link resource
is not a valid command on the comandline
- * will not be able to use action="single" or action="multi" action="record"
- * should still work. Finally, the lack of support for symlinks in Java
- * means that all links are recorded as links to the
- * canonical resource name. Therefore the link:
- * link --> subdir/dir/../foo.bar
will be recorded as
- * link=subdir/foo.bar
and restored as
+ * will not be able to use action= "delete", action="single" or
+ * action="recreate", but action="record" should still work. Finally, the
+ * lack of support for symlinks in Java means that all links are recorded
+ * as links to the canonical resource name. Therefore
+ * the link: link --> subdir/dir/../foo.bar
will be recorded
+ * as link=subdir/foo.bar
and restored as
* link --> subdir/foo.bar
*
* @version $Revision$