Author: ggregory
Date: Wed Dec 31 17:12:22 2014
New Revision: 1648738

URL: http://svn.apache.org/r1648738
Log:
Javadoc: Use the active voice.

Modified:
    
commons/proper/validator/trunk/src/main/java/org/apache/commons/validator/routines/checkdigit/CheckDigit.java

Modified: 
commons/proper/validator/trunk/src/main/java/org/apache/commons/validator/routines/checkdigit/CheckDigit.java
URL: 
http://svn.apache.org/viewvc/commons/proper/validator/trunk/src/main/java/org/apache/commons/validator/routines/checkdigit/CheckDigit.java?rev=1648738&r1=1648737&r2=1648738&view=diff
==============================================================================
--- 
commons/proper/validator/trunk/src/main/java/org/apache/commons/validator/routines/checkdigit/CheckDigit.java
 (original)
+++ 
commons/proper/validator/trunk/src/main/java/org/apache/commons/validator/routines/checkdigit/CheckDigit.java
 Wed Dec 31 17:12:22 2014
@@ -50,7 +50,7 @@ package org.apache.commons.validator.rou
 public interface CheckDigit {
 
     /**
-     * Calculate the <i>Check Digit</i> for a code.
+     * Calculates the <i>Check Digit</i> for a code.
      *
      * @param code The code to calculate the Check Digit for.
      * @return The calculated Check Digit
@@ -59,7 +59,7 @@ public interface CheckDigit {
     String calculate(String code) throws CheckDigitException;
 
     /**
-     * Validate the check digit for the code.
+     * Validates the check digit for the code.
      *
      * @param code The code to validate.
      * @return <code>true</code> if the check digit is valid, otherwise


Reply via email to