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