From a1ca6939f5fa188d7bcd2162bc268c1b90d75d72 Mon Sep 17 00:00:00 2001 From: Peter Reilly Date: Fri, 10 Aug 2007 15:58:54 +0000 Subject: [PATCH] bugzilla: 43087 typeo fix git-svn-id: https://svn.apache.org/repos/asf/ant/core/trunk@564639 13f79535-47bb-0310-9956-ffa450edef68 --- CONTRIBUTORS | 1 + contributors.xml | 4 ++++ src/main/org/apache/tools/ant/types/Substitution.java | 4 ++-- 3 files changed, 7 insertions(+), 2 deletions(-) diff --git a/CONTRIBUTORS b/CONTRIBUTORS index a0749239a..21aaf7e13 100644 --- a/CONTRIBUTORS +++ b/CONTRIBUTORS @@ -116,6 +116,7 @@ Jay Peck Jay van der Meer JC Mann J D Glanville +Jean-Francois Brousseau Jeff Gettle Jeff Martin Jeff Tulley diff --git a/contributors.xml b/contributors.xml index 3870709b7..ad210e2ba 100644 --- a/contributors.xml +++ b/contributors.xml @@ -471,6 +471,10 @@ J D + + Jean-Francois + Brousseau + Jeff Gettle diff --git a/src/main/org/apache/tools/ant/types/Substitution.java b/src/main/org/apache/tools/ant/types/Substitution.java index e4eef8d44..343f4c49e 100644 --- a/src/main/org/apache/tools/ant/types/Substitution.java +++ b/src/main/org/apache/tools/ant/types/Substitution.java @@ -25,7 +25,7 @@ import org.apache.tools.ant.Project; * that is meant to replace a regular expression. * *
- *   <substitition [ [id="id"] expression="expression" | refid="id" ]
+ *   <substitution [ [id="id"] expression="expression" | refid="id" ]
  *   />
  * 
* @@ -33,7 +33,7 @@ import org.apache.tools.ant.Project; */ public class Substitution extends DataType { /** The name of this data type */ - public static final String DATA_TYPE_NAME = "substitition"; + public static final String DATA_TYPE_NAME = "substitution"; private String expression;