Browse Source

bugzilla: 43087 typeo fix

git-svn-id: https://svn.apache.org/repos/asf/ant/core/trunk@564639 13f79535-47bb-0310-9956-ffa450edef68
master
Peter Reilly 18 years ago
parent
commit
a1ca6939f5
3 changed files with 7 additions and 2 deletions
  1. +1
    -0
      CONTRIBUTORS
  2. +4
    -0
      contributors.xml
  3. +2
    -2
      src/main/org/apache/tools/ant/types/Substitution.java

+ 1
- 0
CONTRIBUTORS View File

@@ -116,6 +116,7 @@ Jay Peck
Jay van der Meer
JC Mann
J D Glanville
Jean-Francois Brousseau
Jeff Gettle
Jeff Martin
Jeff Tulley


+ 4
- 0
contributors.xml View File

@@ -471,6 +471,10 @@
<first>J</first>
<last>D</last>
</name>
<name>
<first>Jean-Francois</first>
<last>Brousseau</last>
</name>
<name>
<first>Jeff</first>
<last>Gettle</last>


+ 2
- 2
src/main/org/apache/tools/ant/types/Substitution.java View File

@@ -25,7 +25,7 @@ import org.apache.tools.ant.Project;
* that is meant to replace a regular expression.
*
* <pre>
* &lt;substitition [ [id="id"] expression="expression" | refid="id" ]
* &lt;substitution [ [id="id"] expression="expression" | refid="id" ]
* /&gt;
* </pre>
*
@@ -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;



Loading…
Cancel
Save