@@ -389,7 +389,7 @@ utext_equals(const UText *a, const UText *b);
389
389
390
390
/*****************************************************************************
391
391
*
392
- * Functions to work with the text represeted by a UText wrapper
392
+ * Functions to work with the text represented by a UText wrapper
393
393
*
394
394
*****************************************************************************/
395
395
@@ -433,7 +433,7 @@ utext_isLengthExpensive(const UText *ut);
433
433
*
434
434
* The iteration position will be set to the start of the returned code point.
435
435
*
436
- * This function is roughly equivalent to the the sequence
436
+ * This function is roughly equivalent to the sequence
437
437
* utext_setNativeIndex(index);
438
438
* utext_current32();
439
439
* (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
592
592
utext_setNativeIndex (UText * ut , int64_t nativeIndex );
593
593
594
594
/**
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
596
596
* is a signed number; a negative delta will move the iterator backwards,
597
597
* towards the start of the text.
598
598
* <p>
@@ -611,7 +611,7 @@ U_STABLE UBool U_EXPORT2
611
611
utext_moveIndex32 (UText * ut , int32_t delta );
612
612
613
613
/**
614
- * Get the native index of the character preceeding the current position.
614
+ * Get the native index of the character preceding the current position.
615
615
* If the iteration position is already at the start of the text, zero
616
616
* is returned.
617
617
* The value returned is the same as that obtained from the following sequence,
@@ -628,7 +628,7 @@ utext_moveIndex32(UText *ut, int32_t delta);
628
628
* native index of the character most recently returned from utext_next().
629
629
*
630
630
* @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,
632
632
* or zero if the current position is at the start of the text.
633
633
* @stable ICU 3.6
634
634
*/
@@ -1054,7 +1054,7 @@ UTextAccess(UText *ut, int64_t nativeIndex, UBool forward);
1054
1054
* be NUL-terminated if there is sufficient space in the destination buffer.
1055
1055
*
1056
1056
* @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.
1058
1058
* @param nativeLimit the native string index of the position following the last
1059
1059
* character to extract.
1060
1060
* @param dest the UChar (UTF-16) buffer into which the extracted text is placed
@@ -1211,7 +1211,7 @@ UTextClose(UText *ut);
1211
1211
struct UTextFuncs {
1212
1212
/**
1213
1213
* (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
1215
1215
* functions in the future, to allow tests for older format
1216
1216
* function tables that do not contain the extensions.
1217
1217
*
@@ -1345,7 +1345,7 @@ typedef struct UTextFuncs UTextFuncs;
1345
1345
struct UText {
1346
1346
/**
1347
1347
* (private) Magic. Used to help detect when UText functions are handed
1348
- * invalid or unitialized UText structs.
1348
+ * invalid or uninitialized UText structs.
1349
1349
* utext_openXYZ() functions take an initialized,
1350
1350
* but not necessarily open, UText struct as an
1351
1351
* optional fill-in parameter. This magic field
@@ -1367,7 +1367,7 @@ struct UText {
1367
1367
1368
1368
1369
1369
/**
1370
- * Text provider properties. This set of flags is maintainted by the
1370
+ * Text provider properties. This set of flags is maintained by the
1371
1371
* text provider implementation.
1372
1372
* @stable ICU 3.4
1373
1373
*/
0 commit comments