From 93c43205f69824c0b4a994207bf0e9744b01be93 Mon Sep 17 00:00:00 2001 From: Matthew Jason Benson Date: Thu, 26 Jun 2008 16:38:12 +0000 Subject: [PATCH] polish git-svn-id: https://svn.apache.org/repos/asf/ant/core/trunk@671938 13f79535-47bb-0310-9956-ffa450edef68 --- docs/manual/CoreTasks/componentdef.html | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/docs/manual/CoreTasks/componentdef.html b/docs/manual/CoreTasks/componentdef.html index b082fc178..55fb21c4e 100644 --- a/docs/manual/CoreTasks/componentdef.html +++ b/docs/manual/CoreTasks/componentdef.html @@ -27,7 +27,7 @@

componentdef

Description

- Adds a component definination to the current project. + Adds a component definition to the current project. A compenent definition is the same as a typedef except:

@@ -37,13 +37,13 @@ accept components (by having an add() method).
  • - multiple components may have the same name, provided them + multiple components may have the same name, provided they implement different interfaces.
  • - The purpose of this it allow internal ant definitions to be - be made for tags like "and" or "or". + The purpose of this is to allow internal Ant definitions to be + made for tags like "and" or "or".

    Examples

    @@ -53,7 +53,7 @@ <componentdef name="or" onerror="ignore" classname="com.apache.tools.ant.types.resources.selectors.Or"/>

    - defines two components with the same name "or", one is a condition + defines two components with the same name "or"; one is a condition (see conditions) and one is a selector (see selectors).