@@ -63,16 +63,16 @@ public UnicodeMapIterator()
6363 /**
6464 * Returns the next element in the set, either a single code point
6565 * or a string. If there are no more elements in the set, return
66- * false. If <tt >codepoint == IS_STRING</tt >, the value is a
67- * string in the <tt >string</tt > field. Otherwise the value is a
68- * single code point in the <tt >codepoint</tt > field.
66+ * false. If <c >codepoint == IS_STRING</c >, the value is a
67+ * string in the <c >string</c > field. Otherwise the value is a
68+ * single code point in the <c >codepoint</c > field.
6969 *
70- * <p >The order of iteration is all code points in sorted order,
71- * followed by all strings sorted order. <tt >codepointEnd</tt > is
72- * undefined after calling this method. <tt >string</tt > is
73- * undefined unless <tt >codepoint == IS_STRING</tt >. Do not mix
74- * calls to <tt >next()</tt > and <tt >nextRange()</tt > without
75- * calling <tt >reset()</tt > between them. The results of doing so
70+ * <para/ >The order of iteration is all code points in sorted order,
71+ * followed by all strings sorted order. <c >codepointEnd</c > is
72+ * undefined after calling this method. <c >string</c > is
73+ * undefined unless <c >codepoint == IS_STRING</c >. Do not mix
74+ * calls to <c >next()</c > and <c >nextRange()</c > without
75+ * calling <c >reset()</c > between them. The results of doing so
7676 * are undefined.
7777 *
7878 * @return true if there was another element in the set and this
@@ -114,17 +114,17 @@ public bool Next()
114114 /**
115115 * Returns the next element in the set, either a code point range
116116 * or a string. If there are no more elements in the set, return
117- * false. If <tt >codepoint == IS_STRING</tt >, the value is a
117+ * false. If <c >codepoint == IS_STRING</c >, the value is a
118118 * string in the <tt>string</tt> field. Otherwise the value is a
119- * range of one or more code points from <tt >codepoint</tt > to
120- * <tt >codepointeEnd</tt > inclusive.
119+ * range of one or more code points from <c >codepoint</c > to
120+ * <c >codepointeEnd</c > inclusive.
121121 *
122- * <p >The order of iteration is all code points ranges in sorted
122+ * <para/ >The order of iteration is all code points ranges in sorted
123123 * order, followed by all strings sorted order. Ranges are
124- * disjoint and non-contiguous. <tt >string</tt > is undefined
125- * unless <tt >codepoint == IS_STRING</tt >. Do not mix calls to
126- * <tt >next()</tt > and <tt >nextRange()</tt > without calling
127- * <tt >reset()</tt > between them. The results of doing so are
124+ * disjoint and non-contiguous. <c >string</c > is undefined
125+ * unless <c >codepoint == IS_STRING</c >. Do not mix calls to
126+ * <c >next()</c > and <c >nextRange()</c > without calling
127+ * <c >reset()</c > between them. The results of doing so are
128128 * undefined.
129129 *
130130 * @return true if there was another element in the set and this
0 commit comments