ICU-5553 fix error in Javadoc for BreakIterator

X-SVN-Rev: 22619
This commit is contained in:
Andy Heninger 2007-09-05 15:11:19 +00:00
parent 84e6aefc9e
commit 7feae9ed00

View File

@ -174,7 +174,7 @@ import com.ibm.icu.util.ULocale;
* int current = wb.next();
* while (current != BreakIterator.DONE) {
* for (int p = last; p < current; p++) {
* if (Character.isLetter(text.charAt(p))
* if (Character.isLetter(text.charAt(p)))
* return last;
* }
* last = current;