From 19cdd51b13a35bca9c02ae0192466c0f202242b4 Mon Sep 17 00:00:00 2001 From: Steve Loughran Date: Fri, 26 May 2006 22:37:27 +0000 Subject: [PATCH] getting the brackets right, fixing a link git-svn-id: https://svn.apache.org/repos/asf/ant/core/trunk@409770 13f79535-47bb-0310-9956-ffa450edef68 --- docs/manual/CoreTasks/unzip.html | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/manual/CoreTasks/unzip.html b/docs/manual/CoreTasks/unzip.html index 795ed3f71..a9a015e57 100644 --- a/docs/manual/CoreTasks/unzip.html +++ b/docs/manual/CoreTasks/unzip.html @@ -122,7 +122,7 @@ Prior to Ant 1.7 only fileset has been supported as a nested element.

Related tasks

-<unzip src="some-archive" dest="some-dir"<
+<unzip src="some-archive" dest="some-dir">
   <patternset>
     <include name="some-pattern"/>
   </patternset>
@@ -133,7 +133,7 @@ Prior to Ant 1.7 only fileset has been supported as a nested element.

is identical to
-<copy todir="some-dir" preservelastmodified="true"<
+<copy todir="some-dir" preservelastmodified="true">
   <zipfileset src="some-archive">
     <patternset>
       <include name="some-pattern"/>
@@ -146,7 +146,7 @@ is identical to
 

The same is also true for <untar> and <tarfileset>. <copy> offers additional features like filtering files on the fly, +href="../CoreTypes/filterchain.html">filtering files on the fly, allowing a file to be mapped to multiple destinations or a configurable file system timestamp granularity.