From ee4bca90d9afb8bff3165e65d96ece6d4550e850 Mon Sep 17 00:00:00 2001 From: Dylan T Date: Tue, 23 Feb 2021 17:19:21 +0000 Subject: [PATCH] zend_compile.c: fix typo MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Don't mind me, I just happened to be browsing this code. 🙃 --- Zend/zend_compile.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Zend/zend_compile.c b/Zend/zend_compile.c index 5ecaa399bd73f..2b2dc9b249061 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));