Skip to content

Commit af26f3a

Browse files
committed
MFH: fix spelling and #35665
1 parent a542241 commit af26f3a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ext/standard/string.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4171,7 +4171,7 @@ PHP_FUNCTION(str_repeat)
41714171
/* Initialize the result string */
41724172
result_len = Z_STRLEN_PP(input_str) * Z_LVAL_PP(mult);
41734173
if (result_len < 1 || result_len > 2147483647) {
4174-
php_error_docref(NULL TSRMLS_CC, E_WARNING, "You may not create strings longer then 2147483647 bytes");
4174+
php_error_docref(NULL TSRMLS_CC, E_WARNING, "You may not create strings longer than 2147483647 bytes");
41754175
RETURN_FALSE;
41764176
}
41774177
result = (char *)emalloc(result_len + 1);

0 commit comments

Comments
 (0)