From 66adc2e34619ed47772a7f5bc302bf856394b8bc Mon Sep 17 00:00:00 2001 From: Razzi Abuissa Date: Sun, 1 Mar 2015 22:38:20 -0500 Subject: [PATCH] Clean up whitespace in build.xml example --- manual/using.html | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/manual/using.html b/manual/using.html index 653c34541..3b6e85dab 100644 --- a/manual/using.html +++ b/manual/using.html @@ -166,9 +166,9 @@ task instances at all, only proxies.

Example Buildfile

 <project name="MyProject" default="dist" basedir=".">
-    <description>
-        simple example build file
-    </description>
+  <description>
+    simple example build file
+  </description>
   <!-- set global properties for this build -->
   <property name="src" location="src"/>
   <property name="build" location="build"/>
@@ -182,13 +182,13 @@ task instances at all, only proxies.
   </target>
 
   <target name="compile" depends="init"
-        description="compile the source " >
+        description="compile the source">
     <!-- Compile the java code from ${src} into ${build} -->
     <javac srcdir="${src}" destdir="${build}"/>
   </target>
 
   <target name="dist" depends="compile"
-        description="generate the distribution" >
+        description="generate the distribution">
     <!-- Create the distribution directory -->
     <mkdir dir="${dist}/lib"/>
 
@@ -197,7 +197,7 @@ task instances at all, only proxies.
   </target>
 
   <target name="clean"
-        description="clean up" >
+        description="clean up">
     <!-- Delete the ${build} and ${dist} directory trees -->
     <delete dir="${build}"/>
     <delete dir="${dist}"/>