From db9b493a16bcb13832cd427d16d045885573f5b4 Mon Sep 17 00:00:00 2001 From: Diane Holt Date: Fri, 5 Apr 2002 14:59:27 +0000 Subject: [PATCH] Nits. git-svn-id: https://svn.apache.org/repos/asf/ant/core/trunk@272244 13f79535-47bb-0310-9956-ffa450edef68 --- docs/manual/CoreTypes/dirset.html | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/manual/CoreTypes/dirset.html b/docs/manual/CoreTypes/dirset.html index f61d6fca1..a28379c9f 100644 --- a/docs/manual/CoreTypes/dirset.html +++ b/docs/manual/CoreTypes/dirset.html @@ -77,7 +77,7 @@ elements of <patternset> directly, as well as that have the text Test in their name.

 <dirset dir="${build.dir}">
-  <patternset id="non.test.sources">
+  <patternset id="non.test.classes">
     <include name="apps/**/classes"/>
     <exclude name="apps/**/*Test*"/>
   </patternset>
@@ -87,11 +87,11 @@ that have the text Test in their name.

a PatternSet that can be referenced in other <dirset> elements, rooted at a different directory.

-<dirset dir="${debug_build.src}" >
-  <patternset refid="non.test.sources"/>
+<dirset dir="${debug_build.dir}" >
+  <patternset refid="non.test.classes"/>
 </dirset>
 
-

Groups all files in directory ${debug_build.src}, using the +

Groups all files in directory ${debug_build.dir}, using the same patterns as the above example.