@@ -5508,7 +5508,7 @@ export function regexMatch(
55085508 * strContains("description", "example");
55095509 * ```
55105510 *
5511- * @param fieldName The name of the field containing the string .
5511+ * @param fieldName The name of the field to perform the comparison on .
55125512 * @param substring The substring to search for.
55135513 * @return A new {@code Expr} representing the 'contains' comparison.
55145514 */
@@ -5524,7 +5524,7 @@ export function strContains(fieldName: string, substring: string): BooleanExpr;
55245524 * strContains("description", field("keyword"));
55255525 * ```
55265526 *
5527- * @param fieldName The name of the field containing the string .
5527+ * @param fieldName The name of the field to perform the comparison on .
55285528 * @param substring The expression representing the substring to search for.
55295529 * @return A new {@code Expr} representing the 'contains' comparison.
55305530 */
@@ -5826,8 +5826,8 @@ export function trim(expr: Expr | string): FunctionExpr {
58265826 * ```
58275827 *
58285828 * @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.
58315831 * @return A new {@code Expr} representing the concatenated string.
58325832 */
58335833export function strConcat (
@@ -5845,9 +5845,9 @@ export function strConcat(
58455845 * strConcat(field("firstName"), " ", field("lastName"));
58465846 * ```
58475847 *
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.
58515851 * @return A new {@code Expr} representing the concatenated string.
58525852 */
58535853export function strConcat (
0 commit comments