bodewig 00/10/06 00:32:50
Modified: docs index.html
Log:
Fixed documentation for <antcall>
Submitted by: Nico Seessle <[EMAIL PROTECTED]>,
Diane Holt
Revision Changes Path
1.123 +2 -4 jakarta-ant/docs/index.html
Index: index.html
===================================================================
RCS file: /home/cvs/jakarta-ant/docs/index.html,v
retrieving revision 1.122
retrieving revision 1.123
diff -u -r1.122 -r1.123
--- index.html 2000/10/05 17:19:55 1.122
+++ index.html 2000/10/06 07:32:49 1.123
@@ -965,14 +965,12 @@
<h4>param</h4>
<p>Specifies the properties to set before running the specified target. See
<a
href="#property">property</a> for usage guidelines.</p>
-<p>This will only set the specified properties if the property is not already
-set in the current project!</p>
<h3>Examples</h3>
<pre>
<target name="default">
- <calltarget target="doSomethingElse">
+ <antcall target="doSomethingElse">
<param name="param1" value="value"/>
- </calltarget>
+ </antcall>
</target>
<target name="doSomethingElse">