From f62e511012674af05aee529ef6b7e4194d11996d Mon Sep 17 00:00:00 2001 From: Conor MacNeill Date: Mon, 10 Feb 2003 13:00:11 +0000 Subject: [PATCH] Fix fixcrlf docs PR: 16858 Submitted by: Jesse Stockall git-svn-id: https://svn.apache.org/repos/asf/ant/core/trunk@274036 13f79535-47bb-0310-9956-ffa450edef68 --- docs/manual/CoreTasks/fixcrlf.html | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/docs/manual/CoreTasks/fixcrlf.html b/docs/manual/CoreTasks/fixcrlf.html index bc9b40955..ce524a209 100644 --- a/docs/manual/CoreTasks/fixcrlf.html +++ b/docs/manual/CoreTasks/fixcrlf.html @@ -222,7 +222,8 @@ supports all attributes of <fileset>

Examples

  <fixcrlf srcdir="${src}"
-       eol="lf" eof="remove"
+       eol="lf" 
+       eof="remove"
        includes="**/*.sh"
   />

Replaces EOLs with LF characters and removes eof characters from @@ -236,7 +237,7 @@ Tabs and spaces are left as is. EOF characters are left alone if run on DOS systems, and are removed if run on Unix systems.

  <fixcrlf srcdir="${src}"
-       tabs="add"
+       tab="add"
        includes="**/Makefile"
   />

Sets EOLs according to local OS conventions, and @@ -246,7 +247,7 @@ converts sequences of spaces and tabs to the minimal set of spaces and run on DOS systems, and are removed if run on Unix systems. Many versions of make require tabs prior to commands.

  <fixcrlf srcdir="${src}"
-       tabs="remove"
+       tab="remove"
        tablength="3"
        eol="lf"
        javafiles="yes"
@@ -261,7 +262,7 @@ Many versions of make require tabs prior to commands.

characters will be left untouched.

  <fixcrlf srcdir="${src}"
-       tabs="remove"
+       tab="remove"
        includes="**/README*"
   />

Sets EOLs according to local OS conventions, and