From 2274d559aee401147c3d045fff4c062dd241fb87 Mon Sep 17 00:00:00 2001 From: Rodrigo Primo Date: Mon, 26 Aug 2024 16:22:42 -0300 Subject: [PATCH] Fix typo in AbstractFunctionRestrictionsSniff::is_targetted_token() DocBlock --- 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. *