diff -r 889970e5b728 -r edb590d448c5 jdk/src/share/classes/java/lang/Comparable.java --- a/jdk/src/share/classes/java/lang/Comparable.java Mon Jun 10 12:26:20 2013 +0200 +++ b/jdk/src/share/classes/java/lang/Comparable.java Mon Jun 10 12:58:32 2013 +0100 @@ -56,7 +56,7 @@ * method.
* * For example, if one adds two keys a and b such that - * (!a.equals(b) && a.compareTo(b) == 0) to a sorted + * {@code (!a.equals(b) && a.compareTo(b) == 0)} to a sorted * set that does not use an explicit comparator, the second add * operation returns false (and the size of the sorted set does not increase) * because a and b are equivalent from the sorted set's