Skip to content

Commit e3d237c

Browse files
committed
HBX-2984: Create Reference Guide for Ant
- Correct some of the comments in the file 'ant/docs/examples/common/included.xml' Signed-off-by: Koen Aers <[email protected]>
1 parent a83fe92 commit e3d237c

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

ant/docs/examples/common/included.xml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,15 +45,16 @@
4545
classpathref="classpath" />
4646

4747
<target name="clean">
48-
<!-- Delete the folder 'generated-sources' if it exists -->
48+
<!-- Delete the folder 'generated' if it exists -->
4949
<delete dir="generated"/>
50+
<!-- Delete the compiled class files if any exist -->
5051
<delete>
5152
<fileset dir="." includes="**/*.class"/>
5253
</delete>
5354
</target>
5455

5556
<target name="compile" depends="clean">
56-
<!-- Compile the custom exporter 'HelloExporter' -->
57+
<!-- Compile the source classes if any exist -->
5758
<javac srcdir="." destdir="." classpathref="classpath"/>
5859
</target>
5960

0 commit comments

Comments
 (0)