--- old/src/java.base/share/classes/sun/text/normalizer/UCharacterIterator.java 2015-05-18 19:54:48.044747437 +0400 +++ new/src/java.base/share/classes/sun/text/normalizer/UCharacterIterator.java 2015-05-18 19:54:47.892747437 +0400 @@ -200,8 +200,7 @@ * iterator obtained by calling getLength(). * Usage: * - * - *
+     * 
{@code
      *         UChacterIterator iter = new UCharacterIterator.getInstance(text);
      *         char[] buf = new char[iter.getLength()];
      *         iter.getText(buf);
@@ -217,15 +216,14 @@
      *                 buf = new char[iter.getLength()];
      *             }
      *         }
-     * 
- *
+ * }
* * @param fillIn an array of chars to fill with the underlying UTF-16 code * units. * @param offset the position within the array to start putting the data. * @return the number of code units added to fillIn, as a convenience * @exception IndexOutOfBounds exception if there is not enough - * room after offset in the array, or if offset < 0. + * room after offset in the array, or if offset {@literal <} 0. * @stable ICU 2.4 */ public abstract int getText(char[] fillIn, int offset);