@@ -389,7 +389,7 @@ utext_equals(const UText *a, const UText *b);
389389
390390/*****************************************************************************
391391 *
392- * Functions to work with the text represeted by a UText wrapper
392+ * Functions to work with the text represented by a UText wrapper
393393 *
394394 *****************************************************************************/
395395
@@ -433,7 +433,7 @@ utext_isLengthExpensive(const UText *ut);
433433 *
434434 * The iteration position will be set to the start of the returned code point.
435435 *
436- * This function is roughly equivalent to the the sequence
436+ * This function is roughly equivalent to the sequence
437437 * utext_setNativeIndex(index);
438438 * utext_current32();
439439 * (There is a subtle difference if the index is out of bounds by being less than zero -
@@ -592,7 +592,7 @@ U_STABLE void U_EXPORT2
592592utext_setNativeIndex (UText * ut , int64_t nativeIndex );
593593
594594/**
595- * Move the iterator postion by delta code points. The number of code points
595+ * Move the iterator position by delta code points. The number of code points
596596 * is a signed number; a negative delta will move the iterator backwards,
597597 * towards the start of the text.
598598 * <p>
@@ -611,7 +611,7 @@ U_STABLE UBool U_EXPORT2
611611utext_moveIndex32 (UText * ut , int32_t delta );
612612
613613/**
614- * Get the native index of the character preceeding the current position.
614+ * Get the native index of the character preceding the current position.
615615 * If the iteration position is already at the start of the text, zero
616616 * is returned.
617617 * The value returned is the same as that obtained from the following sequence,
@@ -628,7 +628,7 @@ utext_moveIndex32(UText *ut, int32_t delta);
628628 * native index of the character most recently returned from utext_next().
629629 *
630630 * @param ut the text to be accessed
631- * @return the native index of the character preceeding the current index position,
631+ * @return the native index of the character preceding the current index position,
632632 * or zero if the current position is at the start of the text.
633633 * @stable ICU 3.6
634634 */
@@ -1054,7 +1054,7 @@ UTextAccess(UText *ut, int64_t nativeIndex, UBool forward);
10541054 * be NUL-terminated if there is sufficient space in the destination buffer.
10551055 *
10561056 * @param ut the UText from which to extract data.
1057- * @param nativeStart the native index of the first characer to extract.
1057+ * @param nativeStart the native index of the first character to extract.
10581058 * @param nativeLimit the native string index of the position following the last
10591059 * character to extract.
10601060 * @param dest the UChar (UTF-16) buffer into which the extracted text is placed
@@ -1211,7 +1211,7 @@ UTextClose(UText *ut);
12111211struct UTextFuncs {
12121212 /**
12131213 * (public) Function table size, sizeof(UTextFuncs)
1214- * Intended for use should the table grow to accomodate added
1214+ * Intended for use should the table grow to accommodate added
12151215 * functions in the future, to allow tests for older format
12161216 * function tables that do not contain the extensions.
12171217 *
@@ -1345,7 +1345,7 @@ typedef struct UTextFuncs UTextFuncs;
13451345struct UText {
13461346 /**
13471347 * (private) Magic. Used to help detect when UText functions are handed
1348- * invalid or unitialized UText structs.
1348+ * invalid or uninitialized UText structs.
13491349 * utext_openXYZ() functions take an initialized,
13501350 * but not necessarily open, UText struct as an
13511351 * optional fill-in parameter. This magic field
@@ -1367,7 +1367,7 @@ struct UText {
13671367
13681368
13691369 /**
1370- * Text provider properties. This set of flags is maintainted by the
1370+ * Text provider properties. This set of flags is maintained by the
13711371 * text provider implementation.
13721372 * @stable ICU 3.4
13731373 */
0 commit comments