bodewig 02/04/19 00:16:18
Modified: docs/manual/CoreTasks concat.html
Log:
Update documentation of <concat> to reflect the tofile -> destfile
change made during development.
Fix typo.
Submitted by: Derek Slager <[EMAIL PROTECTED]>
Revision Changes Path
1.4 +4 -4 jakarta-ant/docs/manual/CoreTasks/concat.html
Index: concat.html
===================================================================
RCS file: /home/cvs/jakarta-ant/docs/manual/CoreTasks/concat.html,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- concat.html 12 Apr 2002 03:22:28 -0000 1.3
+++ concat.html 19 Apr 2002 07:16:18 -0000 1.4
@@ -43,7 +43,7 @@
If not specified the console will be used instead.
</td>
<td valign="top" align="center">
- No,
+ No
</td>
</tr>
@@ -96,7 +96,7 @@
<p><b>Concatenate a string to a file:</b></p>
<pre>
- <concat tofile="README">Hello, World!</concat>
+ <concat destfile="README">Hello, World!</concat>
</pre>
<p><b>Concatenate a series of files to the console:</b></p>
@@ -110,7 +110,7 @@
<p><b>Concatenate a single file, appending if the destination file
exists:</b></p>
<pre>
- <concat tofile="NOTES" append="true">
+ <concat destfile="NOTES" append="true">
<filelist dir="notes" files="note.txt" />
</concat>
</pre>
@@ -119,7 +119,7 @@
destination file exists:</b></p>
<pre>
- <concat tofile="${docbook.dir}/all-sections.xml">
+ <concat destfile="${docbook.dir}/all-sections.xml">
<filelist dir="${docbook.dir}/sections"
files="introduction.xml,overview.xml" />
<fileset dir="${docbook.dir}"
--
To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>