From f46df8ffe5f63b041f0a48c2d3381ac3a0e4026a Mon Sep 17 00:00:00 2001 From: Noah Miller Date: Wed, 24 May 2023 16:34:56 -0700 Subject: [PATCH] correct a typo --- Civi/Api4/Query/SqlFunctionIF.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Civi/Api4/Query/SqlFunctionIF.php b/Civi/Api4/Query/SqlFunctionIF.php index 351884c97dc8..f2a3a03176bb 100644 --- a/Civi/Api4/Query/SqlFunctionIF.php +++ b/Civi/Api4/Query/SqlFunctionIF.php @@ -52,7 +52,7 @@ public static function getTitle(): string { */ public static function getDescription(): string { return ts('If the field is boolean TRUE, or any number except 0, or a ' - . 'string not starting with the digits 1-9, the first value, otherwise ' + . 'string starting with the digits 1-9, the first value, otherwise ' . 'the second.'); }