From 53de62561d0022aeb190816a1b069d8293efa33a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?M=C3=A1t=C3=A9=20Kocsis?= Date: Tue, 30 Apr 2024 22:16:45 +0200 Subject: [PATCH] Fix some typos on the reference counting docs page --- docs/source/core/data-structures/reference-counting.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/source/core/data-structures/reference-counting.rst b/docs/source/core/data-structures/reference-counting.rst index 77432f249967f..6895d5d682a80 100644 --- a/docs/source/core/data-structures/reference-counting.rst +++ b/docs/source/core/data-structures/reference-counting.rst @@ -223,6 +223,6 @@ own allocator. Usually, such values are alive for the entire lifetime of the pro being freed at the end of the request. See the `Zend allocator `_ chapter for more information. -The ``GC_PERSISTENT_LOCAL`` flag indicates that a ``CG_PERSISTENT`` value is only accessibly in one +The ``GC_PERSISTENT_LOCAL`` flag indicates that a ``GC_PERSISTENT`` value is only accessible in one thread, and is thus still safe to modify. This flag is only used in debug builds to satisfy an ``assert``.