Repository: ant Updated Branches: refs/heads/master d11cb1454 -> b626ed991
Clean up whitespace in build.xml example Project: http://git-wip-us.apache.org/repos/asf/ant/repo Commit: http://git-wip-us.apache.org/repos/asf/ant/commit/66adc2e3 Tree: http://git-wip-us.apache.org/repos/asf/ant/tree/66adc2e3 Diff: http://git-wip-us.apache.org/repos/asf/ant/diff/66adc2e3 Branch: refs/heads/master Commit: 66adc2e34619ed47772a7f5bc302bf856394b8bc Parents: d11cb14 Author: Razzi Abuissa <[email protected]> Authored: Sun Mar 1 22:38:20 2015 -0500 Committer: Razzi Abuissa <[email protected]> Committed: Sun Mar 1 22:38:20 2015 -0500 ---------------------------------------------------------------------- manual/using.html | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/ant/blob/66adc2e3/manual/using.html ---------------------------------------------------------------------- diff --git a/manual/using.html b/manual/using.html index 653c345..3b6e85d 100644 --- a/manual/using.html +++ b/manual/using.html @@ -166,9 +166,9 @@ task instances at all, only proxies. <h3><a name="example">Example Buildfile</a></h3> <pre> <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}"/>
