summaryrefslogtreecommitdiff
path: root/java/lang/Comparable.java
diff options
context:
space:
mode:
Diffstat (limited to 'java/lang/Comparable.java')
-rw-r--r--java/lang/Comparable.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/java/lang/Comparable.java b/java/lang/Comparable.java
index 4ad39af83..d4ca63ad8 100644
--- a/java/lang/Comparable.java
+++ b/java/lang/Comparable.java
@@ -52,8 +52,8 @@ package java.lang;
*
* <p>Lists, arrays, and sets of objects that implement this interface can
* be sorted automatically, without the need for an explicit
- * {@link java.util.Comparator}. Note that <code>e1.compareTo(null)</code>
- * should throw an Exception; as should comparison between incompatible
+ * {@link java.util.Comparator}. Note that <code>e1.compareTo(null)</code>
+ * should throw an Exception; as should comparison between incompatible
* classes.
*
* @author Geoff Berry