From: Jonathan Torres Date: Tue, 6 Mar 2018 01:36:58 +0000 (-0500) Subject: Fix typo in upgrade notes X-Git-Tag: php-7.3.0alpha1~229 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=1cb3c15032eaf0354bb32839d0c090d1abd3ab72;p=php Fix typo in upgrade notes --- diff --git a/UPGRADING b/UPGRADING index ccf3bc4bba..9395cb3f35 100644 --- a/UPGRADING +++ b/UPGRADING @@ -58,8 +58,8 @@ Core: . Array destructuring now supports reference assignments using the syntax [&$a, [$b, &$c]] = $d. The same is also supported for list(). (RFC: https://wiki.php.net/rfc/list_reference_assignment) - . instancof now allows literal as the first operand, - in this case the result always be FALSE. + . instanceof now allows literals as the first operand, + in which case the result is always FALSE. BCMath: . bcscale() can now also be used as getter to retrieve the current scale in use.