Index: src/java/org/apache/mailet/GenericMailet.java
===================================================================
--- src/java/org/apache/mailet/GenericMailet.java	(revision 448478)
+++ src/java/org/apache/mailet/GenericMailet.java	(working copy)
@@ -147,7 +147,7 @@
      * the mailet container for later use. When overriding this form of the
      * method, call super.init(config).</p>
      *
-     * @param MailetConfig newconfig - the MailetConfig object that contains
+     * @param newConfig - the MailetConfig object that contains
      *          configutation information for this mailet
      * @throws MessagingException
      *          if an exception occurs that interrupts the mailet's normal operation
Index: src/java/org/apache/mailet/dates/SynchronizedDateFormat.java
===================================================================
--- src/java/org/apache/mailet/dates/SynchronizedDateFormat.java	(revision 448478)
+++ src/java/org/apache/mailet/dates/SynchronizedDateFormat.java	(working copy)
@@ -56,7 +56,7 @@
      *
      * <p>TODO: Investigate replacing this with a factory method.</p>
      *
-     * @param the DateFormat to synchronize
+     * @param theDateFormat the DateFormat to synchronize
      */
     protected SynchronizedDateFormat(DateFormat theDateFormat) {
         internalDateFormat = theDateFormat;
Index: src/java/org/apache/mailet/dates/SimplifiedDateFormat.java
===================================================================
--- src/java/org/apache/mailet/dates/SimplifiedDateFormat.java	(revision 448478)
+++ src/java/org/apache/mailet/dates/SimplifiedDateFormat.java	(working copy)
@@ -39,7 +39,7 @@
 
     /**
      * Formats a Date into a date/time string.
-     * @param date the time value to be formatted into a time string.
+     * @param d the time value to be formatted into a time string.
      * @return the formatted time string.
      */
     public String format(Date d);
Index: src/java/org/apache/mailet/GenericMatcher.java
===================================================================
--- src/java/org/apache/mailet/GenericMatcher.java	(revision 448478)
+++ src/java/org/apache/mailet/GenericMatcher.java	(working copy)
@@ -106,7 +106,7 @@
      * the matcher container for alter use. When overriding this form of the
      * method, call super.init(config).</p>
      *
-     * @param MatcherConfig config - the MatcherConfig object that contains
+     * @param newConfig - the MatcherConfig object that contains
      *          configutation information for this matcher
      * @throws MessagingException
      *          if an exception occurs that interrupts the matcher's normal operation
@@ -135,7 +135,7 @@
      * Writes the specified message to a matcher log file, prepended by
      * the matcher's name.
      *
-     * @param msg - a String specifying the message to be written to the log file
+     * @param message - a String specifying the message to be written to the log file
      */
     public void log(String message) {
         StringBuffer logBuffer = 
Index: src/java/org/apache/mailet/MailetContext.java
===================================================================
--- src/java/org/apache/mailet/MailetContext.java	(revision 448478)
+++ src/java/org/apache/mailet/MailetContext.java	(working copy)
@@ -148,7 +148,7 @@
      * Checks if a user account is exists in the mail context.
      *
      * @param userAccount - user identifier.
-     * @return true if the acount is a local account
+     * @return true if the account is a local account
      * 
      * @deprecated use isLocalEmail(MailAddress) instead
      * 
@@ -161,8 +161,8 @@
     /**
      * Checks if a user account is exists in the mail context.
      *
-     * @param userAccount - user identifier.
-     * @return true if the acount is a local account
+     * @param mailAddress - address of the account to be checked.
+     * @return true if the account is a local account
      * 
      * @since James 2.4.0
      */
@@ -182,7 +182,7 @@
      * exception to the mailet log file.
      *
      * @param message - a String that describes the error or exception
-     * @param throwable - the Throwable error or exception
+     * @param t - the Throwable error or exception
      */
     void log(String message, Throwable t);
 
Index: src/java/org/apache/mailet/MailAddress.java
===================================================================
--- src/java/org/apache/mailet/MailAddress.java	(revision 448478)
+++ src/java/org/apache/mailet/MailAddress.java	(working copy)
@@ -166,8 +166,8 @@
      * Construct a MailAddress with the provided personal name and email
      * address.
      *
-     * @param   user        the username or account name on the mail server
-     * @param   host        the server that should accept messages for this user
+     * @param   newUser        the username or account name on the mail server
+     * @param   newHost        the server that should accept messages for this user
      * @throws  ParseException    if the parse failed
      */
     public MailAddress(String newUser, String newHost) throws ParseException {
