diff -r fa61a37ed42b -r c17100862d86 jdk/src/share/classes/java/lang/CharSequence.java --- a/jdk/src/share/classes/java/lang/CharSequence.java Wed Jul 03 19:47:15 2013 -0400 +++ b/jdk/src/share/classes/java/lang/CharSequence.java Wed Jul 03 17:08:14 2013 -0700 @@ -60,7 +60,7 @@ /** * Returns the length of this character sequence. The length is the number - * of 16-bit chars in the sequence.

+ * of 16-bit chars in the sequence. * * @return the number of chars in this sequence */ @@ -70,7 +70,7 @@ * Returns the char value at the specified index. An index ranges from zero * to length() - 1. The first char value of the sequence is at * index zero, the next at index one, and so on, as for array - * indexing.

+ * indexing. * *

If the char value specified by the index is a * surrogate, the surrogate @@ -92,7 +92,7 @@ * ends with the char value at index end - 1. The length * (in chars) of the * returned sequence is end - start, so if start == end - * then an empty sequence is returned.

+ * then an empty sequence is returned. * * @param start the start index, inclusive * @param end the end index, exclusive @@ -109,7 +109,7 @@ /** * Returns a string containing the characters in this sequence in the same * order as this sequence. The length of the string will be the length of - * this sequence.

+ * this sequence. * * @return a string consisting of exactly this sequence of characters */