Skip to content

Commit f97ff59

Browse files
zend_string docs: add missing apostrophe
[skip ci]
1 parent 9898293 commit f97ff59

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

docs/source/core/data-structures/zend_string.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ in bytes, and the ``val`` field contains the actual string data.
2929

3030
You may wonder why the ``val`` field is declared as ``char val[1]``. This is called the `struct
3131
hack`_ in C. It is used to create structs with a flexible size, namely by allowing the last element
32-
to be expanded arbitrarily. In this case, the size of ``zend_string`` depends on the strings length,
32+
to be expanded arbitrarily. In this case, the size of ``zend_string`` depends on the string's length,
3333
which is determined at runtime (see ``_ZSTR_STRUCT_SIZE``). When allocating the string, we append
3434
enough bytes to the allocation to hold the strings content.
3535

0 commit comments

Comments
 (0)