diff --git a/proposal/myrmidon/src/java/org/apache/myrmidon/api/AbstractTask.java b/proposal/myrmidon/src/java/org/apache/myrmidon/api/AbstractTask.java
index d52210816..08c5cc2a2 100644
--- a/proposal/myrmidon/src/java/org/apache/myrmidon/api/AbstractTask.java
+++ b/proposal/myrmidon/src/java/org/apache/myrmidon/api/AbstractTask.java
@@ -41,7 +41,7 @@ public abstract class AbstractTask
* It is called after Task has been Configured and Initialized and before
* beig Disposed (If task implements appropriate interfaces).
*
- * @exception Exception if an error occurs
+ * @exception TaskException if an error occurs
*/
public abstract void execute()
throws TaskException;
diff --git a/proposal/myrmidon/src/java/org/apache/myrmidon/api/TaskContext.java b/proposal/myrmidon/src/java/org/apache/myrmidon/api/TaskContext.java
index 6ca81563b..f1abb1afb 100644
--- a/proposal/myrmidon/src/java/org/apache/myrmidon/api/TaskContext.java
+++ b/proposal/myrmidon/src/java/org/apache/myrmidon/api/TaskContext.java
@@ -15,8 +15,7 @@ import org.apache.avalon.framework.context.Context;
* This interface represents the Context in which Task is executed.
* Like other Component APIs the TaskContext represents the communication
* path between the container and the Task.
- * Unlike other APIs the Logging is provided through another interface (LogEnabled)
- * as is access to Peer components (via Composable).
+ * Unlike other APIs the Logging is provided through another interface (LogEnabled).
*
* @author Peter Donald
* @version $Revision$ $Date$