From a063472791e9b3d14f36b6e4471c77f7b9831bb5 Mon Sep 17 00:00:00 2001 From: Stefan Bodewig Date: Thu, 5 Oct 2000 12:14:46 +0000 Subject: [PATCH] Fixed type on jlink documentation. Submitted by: Steve Zindel git-svn-id: https://svn.apache.org/repos/asf/ant/core/trunk@268060 13f79535-47bb-0310-9956-ffa450edef68 --- docs/jlink.html | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/jlink.html b/docs/jlink.html index ba249c26c..7da42aabe 100644 --- a/docs/jlink.html +++ b/docs/jlink.html @@ -98,7 +98,7 @@ The following will merge the entries in mergefoo.jar and mergebar.jar into out.jar. mac.jar and pc.jar will be added as single entries to out.jar.
-<jlink compress="false" outfile="out.jar"/>
+<jlink compress="false" outfile="out.jar">
    <mergefiles>
      <pathelement path="${build.dir}/mergefoo.jar"/>
      <pathelement path="${build.dir}/mergebar.jar"/>
@@ -116,7 +116,7 @@ Suppose the path for file foo.jar is build/tempbuild/foo.jar. The
 following example
 will provide the entry tempbuild/foo.jar in the out.jar.
 
-<jlink compress="false" outfile="out.jar"/>
+<jlink compress="false" outfile="out.jar">
    <mergefiles>
      <pathelement path="build/tempbuild"/>
    </mergefiles>
@@ -126,7 +126,7 @@ will provide the entry tempbuild/foo.jar in the out.jar.
 However, the next example would result in two top-level entries in out.jar,
 namely bar.class and barnone/myClass.zip
 
-<jlink compress="false" outfile="out.jar"/>
+<jlink compress="false" outfile="out.jar">
    <mergefiles>
      <pathelement path="build/tempbuild/foo.jar"/>
    </mergefiles>