From aff15381c7c807ca5b2259cc3ac8cbfe71ad1a8b Mon Sep 17 00:00:00 2001 From: Conor MacNeill Date: Fri, 20 Jul 2001 14:01:48 +0000 Subject: [PATCH] Fix up typo in documentation PR: 2706 Submitted by: jfreidling@bigfoot.de git-svn-id: https://svn.apache.org/repos/asf/ant/core/trunk@269368 13f79535-47bb-0310-9956-ffa450edef68 --- docs/manual/dirtasks.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/manual/dirtasks.html b/docs/manual/dirtasks.html index db00e9bca..fd3baf87f 100644 --- a/docs/manual/dirtasks.html +++ b/docs/manual/dirtasks.html @@ -139,7 +139,7 @@ but excludes all *.gif files from the copy.

This example can also be expressed using nested elements:

 <copy todir="${dist}">
-  <fileset dir="${src}"/>
+  <fileset dir="${src}">
     <include name="**/images/*"/>
     <exclude name="**/*.gif"/>
   </fileset>