Skip to content

Commit

Permalink
typo in php_lifecycle.rst (#149)
Browse files Browse the repository at this point in the history
  • Loading branch information
dunglas authored Mar 24, 2024
1 parent e643471 commit 53436d6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Book/php7/extensions_design/php_lifecycle.rst
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ If you need to register INI entries for your extension, ``MINIT()`` is the right
If you need to register read-only :doc:`zend_strings <../internal_types/strings>` for further usage, it is time to do so
here (with persistent alloc).

If you need to allocate objects that well be written to while serving a request, then you'll need to duplicate their
If you need to allocate objects that will be written to while serving a request, then you'll need to duplicate their
memory allocation to a thread-specific pool for the request. Remember that you can only write safely to global space
while into ``MINIT()``.

Expand Down

0 comments on commit 53436d6

Please sign in to comment.