Skip to content

Commit e5df15a

Browse files
author
Julien Pauli
committed
rewording
1 parent 9e5618c commit e5df15a

File tree

7 files changed

+12
-8
lines changed

7 files changed

+12
-8
lines changed

Book/hashtables.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,4 +13,4 @@ Contents:
1313
hashtables/basic_structure.rst
1414
hashtables/hashtable_api.rst
1515
hashtables/array_api.rst
16-
hashtables/hash_algorithm.rst
16+
hashtables/hash_algorithm.rst

Book/php7/extensions_design.rst

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,4 +12,6 @@ Contents:
1212
:maxdepth: 2
1313

1414
extensions_design/php_lifecycle.rst
15-
extensions_design/globals_management.rst
15+
extensions_design/extension_skeleton.rst
16+
extensions_design/globals_management.rst
17+
extensions_design/php_functions.rst
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Managing global scope
1+
Managing global state
22
=====================
33

44

Book/php7/internal_types.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,5 +14,6 @@ Contents:
1414
internal_types/strings.rst
1515
internal_types/zend_resources.rst
1616
internal_types/hashtables.rst
17+
internal_types/functions.rst
1718
..
1819
internal_types/objects/classes_and_objects.rst
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
HashTables
2-
==========
1+
HashTables: zend_array
2+
=======================
33

44

Book/php7/internal_types/strings.rst

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,12 @@ Many operations are needed with strings. Although the C standard library provide
77
C classical strings, aka ``char *`` (or ``char []``) are usually a little bit weak to use as-is in a strong program
88
like PHP is.
99

10-
Thus, PHP designed a layer on top of C strings : ``zend_strings``. Also, anoter API exists that implements common string
10+
Thus, PHP designed a layer on top of C strings: ``zend_strings``. Also, anoter API exists that implements common string
1111
operations both for C classical strings, or for ``zend_strings``: ``smart_str`` API.
1212

1313
.. toctree::
1414
:maxdepth: 2
1515

1616
strings/zend_strings.rst
1717
strings/smart_str.rst
18+
strings/printing_functions.rst

Book/php7/internal_types/strings/zend_strings.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
Strings management : zend_string
2-
================================
1+
Strings management: zend_string
2+
===============================
33

44
Any program needs to manage strings. Here, we'll detail the zend_string structure which helps for that.
55
Every time PHP needs to work with a string, a zend_string structure will be used. This structure is just a simple

0 commit comments

Comments
 (0)