Browse Source

Update documentation of <concat> to reflect the tofile -> destfile

change made during development.

Fix typo.

Submitted by:	Derek Slager <derek@activate.net>


git-svn-id: https://svn.apache.org/repos/asf/ant/core/trunk@272522 13f79535-47bb-0310-9956-ffa450edef68
master
Stefan Bodewig 23 years ago
parent
commit
0c54584d3d
1 changed files with 4 additions and 4 deletions
  1. +4
    -4
      docs/manual/CoreTasks/concat.html

+ 4
- 4
docs/manual/CoreTasks/concat.html View File

@@ -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>
&lt;concat tofile=&quot;README&quot;&gt;Hello, World!&lt;/concat&gt;
&lt;concat destfile=&quot;README&quot;&gt;Hello, World!&lt;/concat&gt;
</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>
&lt;concat tofile=&quot;NOTES&quot; append=&quot;true&quot;&gt;
&lt;concat destfile=&quot;NOTES&quot; append=&quot;true&quot;&gt;
&lt;filelist dir=&quot;notes&quot; files=&quot;note.txt&quot; /&gt;
&lt;/concat&gt;
</pre>
@@ -119,7 +119,7 @@
destination file exists:</b></p>

<pre>
&lt;concat tofile=&quot;${docbook.dir}/all-sections.xml&quot;&gt;
&lt;concat destfile=&quot;${docbook.dir}/all-sections.xml&quot;&gt;
&lt;filelist dir=&quot;${docbook.dir}/sections&quot;
files=&quot;introduction.xml,overview.xml&quot; /&gt;
&lt;fileset dir=&quot;${docbook.dir}&quot;


Loading…
Cancel
Save