From: Teoh Han Hui Date: Thu, 1 Sep 2016 04:21:15 +0000 (+0800) Subject: Fix some grammatical errors in PHP 7.1 Upgrade Notes X-Git-Tag: php-7.2.0alpha1~1384^2 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=2c3408f5cb71c979b15c384459540ac364a2c356;p=php Fix some grammatical errors in PHP 7.1 Upgrade Notes [skip ci] --- diff --git a/UPGRADING b/UPGRADING index e896be3daf..53d7b5f9e6 100644 --- a/UPGRADING +++ b/UPGRADING @@ -61,7 +61,7 @@ PHP 7.1 UPGRADE NOTES . Fixes to random number generators mean that mt_rand() now produces a different sequence of outputs to previous versions. If you relied on mt_srand() to produce a deterministic sequence, it can be called using - mt_srand($seed, MT_RAND_PHP) to produce old the sequences. + mt_srand($seed, MT_RAND_PHP) to produce the old sequences. . URL rewriter has been improved. . Use dedicated buffer for Session module rewrite and User rewrite. . Full path URL rewrite is supported. Allowed domain can be specified. @@ -122,7 +122,7 @@ PHP 7.1 UPGRADE NOTES - Reflection: . The behavior of ReflectionMethod::invoke() and ::invokeArgs() has been - aligned, what causes slightly different behavior than before for some + aligned, which causes slightly different behavior than before for some pathological cases. . ReflectionType::__toString() will now return the type name with a leading "?" if it is nullable. To retrieve the type name without leading "?" the new @@ -268,7 +268,7 @@ PHP 7.1 UPGRADE NOTES - DBA: . Data modification functions (e.g.: dba_insert()) now throw an instance of - Error instead of triggering a catchable fatal error if the key is does not + Error instead of triggering a catchable fatal error if the key does not contain exactly two elements. - DOM: