Commit f97ff597429 for php.net
commit f97ff597429a2fe633665a7e02d97c8077f9f90f
Author: Daniel Scherzer <daniel.e.scherzer@gmail.com>
Date: Wed May 27 15:15:22 2026 -0700
`zend_string` docs: add missing apostrophe
[skip ci]
diff --git a/docs/source/core/data-structures/zend_string.rst b/docs/source/core/data-structures/zend_string.rst
index 2b07611e342..5b1d3ac0ccf 100644
--- a/docs/source/core/data-structures/zend_string.rst
+++ b/docs/source/core/data-structures/zend_string.rst
@@ -29,7 +29,7 @@ in bytes, and the ``val`` field contains the actual string data.
You may wonder why the ``val`` field is declared as ``char val[1]``. This is called the `struct
hack`_ in C. It is used to create structs with a flexible size, namely by allowing the last element
-to be expanded arbitrarily. In this case, the size of ``zend_string`` depends on the strings length,
+to be expanded arbitrarily. In this case, the size of ``zend_string`` depends on the string's length,
which is determined at runtime (see ``_ZSTR_STRUCT_SIZE``). When allocating the string, we append
enough bytes to the allocation to hold the strings content.