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:
Stephen Colebourne 2003-01-19 17:51:42 +00:00
parent 158a5104d0
commit 7ce43857cd
1 changed files with 2 additions and 2 deletions

View File

@ -76,7 +76,7 @@
*
* <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 @@
* @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 {