From 45215d0e78db6de25041ac01db324142def3f6cd Mon Sep 17 00:00:00 2001 From: DanielEScherzer Date: Mon, 7 Jul 2025 12:33:36 -0700 Subject: [PATCH] php_spl.c: fix typo in `spl_classes()` description [skip ci] --- ext/spl/php_spl.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ext/spl/php_spl.c b/ext/spl/php_spl.c index 1149be29bd4..e6134c94b72 100644 --- a/ext/spl/php_spl.c +++ b/ext/spl/php_spl.c @@ -213,7 +213,7 @@ PHP_FUNCTION(class_uses) SPL_ADD_CLASS(UnderflowException, z_list, sub, allow, ce_flags); \ SPL_ADD_CLASS(UnexpectedValueException, z_list, sub, allow, ce_flags); \ -/* {{{ Return an array containing the names of all clsses and interfaces defined in SPL */ +/* {{{ Return an array containing the names of all classes and interfaces defined in SPL */ PHP_FUNCTION(spl_classes) { if (zend_parse_parameters_none() == FAILURE) {