Fix javadoc where wrong method name specified
from Michael Schulze git-svn-id: https://svn.apache.org/repos/asf/jakarta/commons/proper/lang/trunk@137230 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
158a5104d0
commit
7ce43857cd
|
@ -76,7 +76,7 @@ import org.apache.commons.lang.NumberUtils;
|
|||
*
|
||||
* <p>Typical use for the code is as follows:</p>
|
||||
* <pre>
|
||||
* public int comapareTo(Object o) {
|
||||
* public int compareTo(Object o) {
|
||||
* MyClass rhs = (MyClass) o;
|
||||
* return new CompareToBuilder()
|
||||
* .appendSuper(super.compareTo(o)
|
||||
|
@ -105,7 +105,7 @@ import org.apache.commons.lang.NumberUtils;
|
|||
* @author Stephen Colebourne
|
||||
* @author Gary Gregory
|
||||
* @since 1.0
|
||||
* @version $Id: CompareToBuilder.java,v 1.10 2003/01/19 17:35:21 scolebourne Exp $
|
||||
* @version $Id: CompareToBuilder.java,v 1.11 2003/01/19 17:51:42 scolebourne Exp $
|
||||
*/
|
||||
public class CompareToBuilder {
|
||||
|
||||
|
|
Loading…
Reference in New Issue