summaryrefslogtreecommitdiff
path: root/ext/intl/intl_convert.c
diff options
context:
space:
mode:
Diffstat (limited to 'ext/intl/intl_convert.c')
-rwxr-xr-xext/intl/intl_convert.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/intl/intl_convert.c b/ext/intl/intl_convert.c
index 33f1730625..92cdc4cef4 100755
--- a/ext/intl/intl_convert.c
+++ b/ext/intl/intl_convert.c
@@ -67,7 +67,7 @@ void intl_convert_utf8_to_utf16(
return;
}
- /* Bail out if an unexpected error occured.
+ /* Bail out if an unexpected error occurred.
* (U_BUFFER_OVERFLOW_ERROR means that *target buffer is not large enough).
* (U_STRING_NOT_TERMINATED_WARNING usually means that the input string is empty).
*/
@@ -119,7 +119,7 @@ void intl_convert_utf16_to_utf8(
*status = U_ZERO_ERROR;
u_strToUTF8( NULL, 0, &dst_len, src, src_len, status );
- /* Bail out if an unexpected error occured.
+ /* Bail out if an unexpected error occurred.
* (U_BUFFER_OVERFLOW_ERROR means that *target buffer is not large enough).
* (U_STRING_NOT_TERMINATED_WARNING usually means that the input string is empty).
*/