@@ -5508,7 +5508,7 @@ export function regexMatch(
5508
5508
* strContains("description", "example");
5509
5509
* ```
5510
5510
*
5511
- * @param fieldName The name of the field containing the string .
5511
+ * @param fieldName The name of the field to perform the comparison on .
5512
5512
* @param substring The substring to search for.
5513
5513
* @return A new {@code Expr} representing the 'contains' comparison.
5514
5514
*/
@@ -5524,7 +5524,7 @@ export function strContains(fieldName: string, substring: string): BooleanExpr;
5524
5524
* strContains("description", field("keyword"));
5525
5525
* ```
5526
5526
*
5527
- * @param fieldName The name of the field containing the string .
5527
+ * @param fieldName The name of the field to perform the comparison on .
5528
5528
* @param substring The expression representing the substring to search for.
5529
5529
* @return A new {@code Expr} representing the 'contains' comparison.
5530
5530
*/
@@ -5826,8 +5826,8 @@ export function trim(expr: Expr | string): FunctionExpr {
5826
5826
* ```
5827
5827
*
5828
5828
* @param fieldName The field name containing the initial string value.
5829
- * @param secondString An expression or string literal to concatenate.
5830
- * @param otherStrings Optional additional expressions or literals (typically strings) to concatenate.
5829
+ * @param secondString A string expression or string literal to concatenate.
5830
+ * @param otherStrings Optional additional string expressions or string literals to concatenate.
5831
5831
* @return A new {@code Expr} representing the concatenated string.
5832
5832
*/
5833
5833
export function strConcat (
@@ -5845,9 +5845,9 @@ export function strConcat(
5845
5845
* strConcat(field("firstName"), " ", field("lastName"));
5846
5846
* ```
5847
5847
*
5848
- * @param firstString The initial string expression to concatenate to .
5849
- * @param secondString An expression or string literal to concatenate.
5850
- * @param otherStrings Optional additional expressions or literals (typically strings) to concatenate.
5848
+ * @param firstString The expression representing the initial string value .
5849
+ * @param secondString A string expression or string literal to concatenate.
5850
+ * @param otherStrings Optional additional string expressions or string literals to concatenate.
5851
5851
* @return A new {@code Expr} representing the concatenated string.
5852
5852
*/
5853
5853
export function strConcat (
0 commit comments