summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorXinchen Hui <laruence@php.net>2015-04-11 17:48:05 +0800
committerXinchen Hui <laruence@php.net>2015-04-11 17:48:05 +0800
commit5da41790f755e6ef4777161813dcdfbf85ab3359 (patch)
tree152d59857b543f1bf14013d383d90c88443f0eb4
parentf08414ce1d475d7b3fdfc5e6ae82e8e3b8b10f0e (diff)
downloadphp-git-5da41790f755e6ef4777161813dcdfbf85ab3359.tar.gz
Improve words
-rw-r--r--NEWS3
-rw-r--r--UPGRADING3
2 files changed, 4 insertions, 2 deletions
diff --git a/NEWS b/NEWS
index e3559c2061..3da1254415 100644
--- a/NEWS
+++ b/NEWS
@@ -68,7 +68,8 @@
. Added error_clear_last() function. (Reeze Xia)
. Fixed bug #68797 (Number 2.2250738585072012e-308 converted incorrectly).
(Anatol)
- . Added hybrid sorting algo zend_sort for better performance. (Laruence)
+ . Improved zend_qsort(using hybrid sorting algo) for better performance,
+ and also renamed zend_qsort to zend_sort. (Laruence)
. Added stable sorting algo zend_insert_sort. (Laruence)
. Implemented the RFC `Scalar Type Decalarations v0.5`. (Anthony)
. Implemented the RFC `Group Use Declarations`. (Marcio)
diff --git a/UPGRADING b/UPGRADING
index 594190b235..a34fe9fa02 100644
--- a/UPGRADING
+++ b/UPGRADING
@@ -409,7 +409,8 @@ Standard library changes
. call_user_method() and call_user_method_array() no longer exists.
. ob_start() no longer issues an E_ERROR, but instead an E_RECOVERABLE_ERROR in case an
output buffer is created in an output buffer handler.
- . Added hybrid sorting algo zend_sort for better performance.
+ . Improved zend_qsort(using hybrid sorting algo) for better performance,
+ and also renamed zend_qsort to zend_sort.
. Added stable sorting algo zend_insert_sort.
. Removed dl() function on fpm-fcgi.