diff options
| author | Marc Easen <marc@easen.co.uk> | 2012-06-11 21:47:40 +0100 |
|---|---|---|
| committer | Stanislav Malyshev <stas@php.net> | 2012-06-30 16:54:03 -0700 |
| commit | 896ac689c91967dec0601fa9fe048c518da52a3c (patch) | |
| tree | 0713aa9ce09ce390ef5325d0040be4052f8862d5 /ext/intl/intl_convert.c | |
| parent | b8d453d8d4b6a67531aa1c2d0d7bab1e25ed1d4f (diff) | |
| download | php-git-896ac689c91967dec0601fa9fe048c518da52a3c.tar.gz | |
Fixed the common misspelling of the word occurred (occured -> occurred)
Diffstat (limited to 'ext/intl/intl_convert.c')
| -rwxr-xr-x | ext/intl/intl_convert.c | 4 |
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). */ |
