From 35195cb135cc6b1089892ad48816d3a40966d673 Mon Sep 17 00:00:00 2001 From: Stefan Bodewig Date: Fri, 6 Oct 2000 07:32:49 +0000 Subject: [PATCH] Fixed documentation for Submitted by: Nico Seessle , Diane Holt git-svn-id: https://svn.apache.org/repos/asf/ant/core/trunk@268063 13f79535-47bb-0310-9956-ffa450edef68 --- docs/index.html | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/docs/index.html b/docs/index.html index a3174e71c..1025f6137 100644 --- a/docs/index.html +++ b/docs/index.html @@ -965,14 +965,12 @@ properties (param's in this context)

param

Specifies the properties to set before running the specified target. See property for usage guidelines.

-

This will only set the specified properties if the property is not already -set in the current project!

Examples

   <target name="default">
-    <calltarget target="doSomethingElse">
+    <antcall target="doSomethingElse">
       <param name="param1" value="value"/>
-    </calltarget>
+    </antcall>
   </target>
 
   <target name="doSomethingElse">