]> granicus.if.org Git - php/commitdiff
Fix typos and add link to the phpng upgrading wiki page
authorHannes Magnusson <bjori@php.net>
Fri, 29 May 2015 19:04:53 +0000 (19:04 +0000)
committerHannes Magnusson <bjori@php.net>
Fri, 29 May 2015 19:07:14 +0000 (19:07 +0000)
UPGRADING.INTERNALS

index 632c87e1c462f69222a16769ef0aa493609e0497..07a2196eaa021b24aa5f2cfbbdbb0819a2ec6914 100644 (file)
@@ -2,6 +2,7 @@ $Id$
 
 PHP 7.0 INTERNALS UPGRADE NOTES
 
+0. Wiki Examples
 1. Internal API changes
   e. New data types
   f. zend_parse_parameters() specs
@@ -23,6 +24,14 @@ PHP 7.0 INTERNALS UPGRADE NOTES
   b. Windows build system changes
 
 
+================
+0. Wiki Examples
+================
+
+The wiki contains multiple examples and further explainations of the internal
+changes. See: https://wiki.php.net/phpng-upgrading
+
+
 ========================
 1. Internal API changes
 ========================
@@ -196,10 +205,10 @@ PHP 7.0 INTERNALS UPGRADE NOTES
      zend_fetch_resource_ex. More details can be found in Zend/zend_list.c.
 
   t. Optimized strings concatenation.
-     ZEND_ADD_STRING/VAR/CHAR are replaced with ZEND_ROPE_INTI, ZEND_ROPE_ADD,
+     ZEND_ADD_STRING/VAR/CHAR are replaced with ZEND_ROPE_INIT, ZEND_ROPE_ADD,
      ZEND_ROPE_END.
      Instead of reallocation and copying string on each ZEND_ADD_STRING/VAR/CAHR,
-     collect all the strings and then alloca te and construct the resulting string once.
+     collect all the strings and then allocate and construct the resulting string once.
 
 
 ========================