conor 2003/02/10 05:00:11
Modified: docs/manual/CoreTasks fixcrlf.html
Log:
Fix fixcrlf docs
PR: 16858
Submitted by: Jesse Stockall
Revision Changes Path
1.13 +5 -4 jakarta-ant/docs/manual/CoreTasks/fixcrlf.html
Index: fixcrlf.html
===================================================================
RCS file: /home/cvs/jakarta-ant/docs/manual/CoreTasks/fixcrlf.html,v
retrieving revision 1.12
retrieving revision 1.13
diff -u -w -u -r1.12 -r1.13
--- fixcrlf.html 13 Dec 2002 13:45:01 -0000 1.12
+++ fixcrlf.html 10 Feb 2003 13:00:11 -0000 1.13
@@ -222,7 +222,8 @@
</table>
<h3>Examples</h3>
<pre> <fixcrlf srcdir="${src}"
- eol="lf" eof="remove"
+ eol="lf"
+ eof="remove"
includes="**/*.sh"
/></pre>
<p>Replaces EOLs with LF characters and removes eof characters from
@@ -236,7 +237,7 @@
EOF characters are left alone if run on
DOS systems, and are removed if run on Unix systems.</p>
<pre> <fixcrlf srcdir="${src}"
- tabs="add"
+ tab="add"
includes="**/Makefile"
/></pre>
<p>Sets EOLs according to local OS conventions, and
@@ -246,7 +247,7 @@
run on DOS systems, and are removed if run on Unix systems.
Many versions of make require tabs prior to commands.</p>
<pre> <fixcrlf srcdir="${src}"
- tabs="remove"
+ tab="remove"
tablength="3"
eol="lf"
javafiles="yes"
@@ -261,7 +262,7 @@
characters will be left untouched.
</p>
<pre> <fixcrlf srcdir="${src}"
- tabs="remove"
+ tab="remove"
includes="**/README*"
/></pre>
<p>Sets EOLs according to local OS conventions, and