summaryrefslogtreecommitdiff
path: root/Zend
diff options
context:
space:
mode:
authorDylan T <odigiman@gmail.com>2021-02-23 17:19:21 +0000
committerNikita Popov <nikita.ppv@gmail.com>2021-02-24 10:10:19 +0100
commite5551d50e7699e67f690f138cd2a170aa871a8a2 (patch)
treecbd676c5b64985dcbb2d50ba1e4c8d96f5d7f19d /Zend
parentdda0cea5cd7875a27dc052df4c8c1ac40a5b17b4 (diff)
downloadphp-git-e5551d50e7699e67f690f138cd2a170aa871a8a2.tar.gz
zend_compile.c: fix typo
Don't mind me, I just happened to be browsing this code. 🙃 Closes GH-6721. [ci skip]
Diffstat (limited to 'Zend')
-rw-r--r--Zend/zend_compile.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Zend/zend_compile.c b/Zend/zend_compile.c
index 5ecaa399bd..2b2dc9b249 100644
--- a/Zend/zend_compile.c
+++ b/Zend/zend_compile.c
@@ -2902,7 +2902,7 @@ static zend_op *zend_delayed_compile_prop(znode *result, zend_ast *ast, uint32_t
opline = zend_delayed_compile_var(&obj_node, obj_ast, type, 0);
zend_separate_if_call_and_write(&obj_node, obj_ast, type);
if (nullsafe) {
- /* We will push to the short_cirtcuiting_opnums stack in zend_delayed_compile_end(). */
+ /* We will push to the short_circuiting_opnums stack in zend_delayed_compile_end(). */
opline = zend_delayed_emit_op(NULL, ZEND_JMP_NULL, &obj_node, NULL);
if (opline->op1_type == IS_CONST) {
Z_TRY_ADDREF_P(CT_CONSTANT(opline->op1));