From 688a68d1a87d0f53f8e8ad3eb6a3b54ab1ef3ff1 Mon Sep 17 00:00:00 2001 From: Yoshito Umaoka Date: Tue, 4 Mar 2014 06:20:13 +0000 Subject: [PATCH] ICU-10665 Fixed bad HTML tags in the API docs for UCharacterIterator. X-SVN-Rev: 35313 --- .../core/src/com/ibm/icu/text/UCharacterIterator.java | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/icu4j/main/classes/core/src/com/ibm/icu/text/UCharacterIterator.java b/icu4j/main/classes/core/src/com/ibm/icu/text/UCharacterIterator.java index 0a8f094c72b..3421b44c88a 100644 --- a/icu4j/main/classes/core/src/com/ibm/icu/text/UCharacterIterator.java +++ b/icu4j/main/classes/core/src/com/ibm/icu/text/UCharacterIterator.java @@ -1,6 +1,6 @@ /* ******************************************************************************* - * Copyright (C) 1996-2009, International Business Machines Corporation and * + * Copyright (C) 1996-2014, International Business Machines Corporation and * * others. All Rights Reserved. * ******************************************************************************* */ @@ -198,7 +198,7 @@ public abstract class UCharacterIterator * Returns the code point at index, and increments to the next code * point (post-increment semantics). If index does not point to a * valid surrogate pair, the behavior is the same as - * next(). Otherwise the iterator is incremented past + * next(). Otherwise the iterator is incremented past * the surrogate pair, and the code point represented by the pair * is returned. * @return the next codepoint in text, or DONE if the index is at @@ -287,7 +287,7 @@ public abstract class UCharacterIterator * Fills the buffer with the underlying text storage of the iterator * If the buffer capacity is not enough a exception is thrown. The capacity * of the fill in buffer should at least be equal to length of text in the - * iterator obtained by calling getLength()getLength()). * Usage: * * @@ -321,7 +321,7 @@ public abstract class UCharacterIterator public abstract int getText(char[] fillIn, int offset); /** - * Convenience override for getText(char[], int)>/code> that provides + * Convenience override for getText(char[], int) that provides * an offset of 0. * @param fillIn an array of chars to fill with the underlying UTF-16 code * units. -- 2.40.0