From 0d24267579b171f502abd5506690b95100f107a9 Mon Sep 17 00:00:00 2001 From: Rodrigo Primo Date: Wed, 28 Aug 2024 01:55:20 -0300 Subject: [PATCH] Fix typo in AbstractFunctionRestrictionsSniff::is_targetted_token() DocBlock (#2477) --- WordPress/AbstractFunctionRestrictionsSniff.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/WordPress/AbstractFunctionRestrictionsSniff.php b/WordPress/AbstractFunctionRestrictionsSniff.php index 3523764b9..8ad1e5e58 100644 --- a/WordPress/AbstractFunctionRestrictionsSniff.php +++ b/WordPress/AbstractFunctionRestrictionsSniff.php @@ -214,7 +214,7 @@ public function process_token( $stackPtr ) { } /** - * Verify is the current token is a function call. + * Verify if the current token is a function call. * * @since 0.11.0 Split out from the `process()` method. *