Author: mbenson
Date: Tue Sep 12 08:05:05 2006
New Revision: 442613

URL: http://svn.apache.org/viewvc?view=rev&rev=442613
Log:
spelling, ws

Modified:
    ant/core/trunk/docs/manual/develop.html

Modified: ant/core/trunk/docs/manual/develop.html
URL: 
http://svn.apache.org/viewvc/ant/core/trunk/docs/manual/develop.html?view=diff&rev=442613&r1=442612&r2=442613
==============================================================================
--- ant/core/trunk/docs/manual/develop.html (original)
+++ ant/core/trunk/docs/manual/develop.html Tue Sep 12 08:05:05 2006
@@ -29,7 +29,7 @@
 <p>It is very easy to write your own task:</p>
 <ol>
   <li>Create a Java class that extends <code>org.apache.tools.ant.Task</code>
-      or <a href="base_task_classes.html">another class</a> that was desgined 
to be extended.</li>
+      or <a href="base_task_classes.html">another class</a> that was designed 
to be extended.</li>
   <li>For each attribute, write a <i>setter</i> method. The setter method must 
be a
     <code>public void</code> method that takes a single argument. The
     name of the method must begin with <code>set</code>, followed by the
@@ -380,7 +380,6 @@
   <li>Use your task in the rest of the buildfile.</li>
 </ol>
 
-
 <h3>Example</h3>
 <blockquote>
 <pre>
@@ -425,7 +424,6 @@
 </pre>
 </blockquote>
 
-
 <p>Another way to add a task (more permanently), is to add the task name and
 implementing class name to the <code>default.properties</code> file in the
 <code>org.apache.tools.ant.taskdefs</code>
@@ -487,7 +485,6 @@
 <hr>
 <h2><a name="integration">Source code integration</a></h2>
 
-
 The other way to extend Ant through Java is to make changes to existing tasks, 
which is positively encouraged.
 Both changes to the existing source and new tasks can be incorporated back 
into the Ant codebase, which
 benefits all users and spreads the maintenance load around.
@@ -502,8 +499,6 @@
 <a href="http://ant.apache.org/ant_task_guidelines.html";>task guidelines</a>
 which provides some advice to people developing and testing tasks. Even if you 
intend to
 keep your tasks to yourself, you should still read this as it should be 
informative.
-
-
 
 </body>
 </html>



---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to