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.
<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}"/>