From: Scott MacVicar Date: Fri, 6 Nov 2009 09:02:52 +0000 (+0000) Subject: Fix a typo X-Git-Tag: php-5.3.2RC1~265 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=065167bdae7aa02794202cc4f241d7da59f44c11;p=php Fix a typo --- diff --git a/ext/standard/string.c b/ext/standard/string.c index 9408e6b019..b6ba60dc5c 100644 --- a/ext/standard/string.c +++ b/ext/standard/string.c @@ -3918,7 +3918,7 @@ PHP_FUNCTION(nl2br) tmp = str; end = str + str_len; - /* it is really faster to scan twice and allocate mem once insted scanning once + /* it is really faster to scan twice and allocate mem once instead of scanning once and constantly reallocing */ while (tmp < end) { if (*tmp == '\r') {