Skip to content

Commit 508d79d

Browse files
committed
Fixes
1 parent 03eb22e commit 508d79d

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

packages/firestore/src/lite-api/expressions.ts

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -4664,7 +4664,7 @@ export function eqAny(
46644664
*
46654665
* @param fieldName The field to compare.
46664666
* @param arrayExpression An expression that evaluates to an array, whose elements to check for equality to the input field.
4667-
* @return A new {@code Expr} representing the 'IN' comparison.
4667+
* @return A new {@code BooleanExpr} representing the 'IN' comparison.
46684668
*/
46694669
export function eqAny(fieldName: string, arrayExpression: Expr): BooleanExpr;
46704670
export function eqAny(
@@ -4688,7 +4688,7 @@ export function eqAny(
46884688
*
46894689
* @param element The expression to compare.
46904690
* @param values The values to check against.
4691-
* @return A new {@code Expr} representing the 'NOT IN' comparison.
4691+
* @return A new {@code BooleanExpr} representing the 'NOT IN' comparison.
46924692
*/
46934693
export function notEqAny(
46944694
element: Expr,
@@ -4708,7 +4708,7 @@ export function notEqAny(
47084708
*
47094709
* @param fieldName The field name to compare.
47104710
* @param values The values to check against.
4711-
* @return A new {@code Expr} representing the 'NOT IN' comparison.
4711+
* @return A new {@code BooleanExpr} representing the 'NOT IN' comparison.
47124712
*/
47134713
export function notEqAny(
47144714
fieldName: string,
@@ -4728,7 +4728,7 @@ export function notEqAny(
47284728
*
47294729
* @param element The expression to compare.
47304730
* @param arrayExpression The values to check against.
4731-
* @return A new {@code Expr} representing the 'NOT IN' comparison.
4731+
* @return A new {@code BooleanExpr} representing the 'NOT IN' comparison.
47324732
*/
47334733
export function notEqAny(element: Expr, arrayExpression: Expr): BooleanExpr;
47344734

@@ -4744,7 +4744,7 @@ export function notEqAny(element: Expr, arrayExpression: Expr): BooleanExpr;
47444744
*
47454745
* @param fieldName The field name to compare.
47464746
* @param arrayExpression The values to check against.
4747-
* @return A new {@code Expr} representing the 'NOT IN' comparison.
4747+
* @return A new {@code BooleanExpr} representing the 'NOT IN' comparison.
47484748
*/
47494749
export function notEqAny(fieldName: string, arrayExpression: Expr): BooleanExpr;
47504750

@@ -4773,7 +4773,7 @@ export function notEqAny(
47734773
* @param first The first condition.
47744774
* @param second The second condition.
47754775
* @param additionalConditions Additional conditions to 'XOR' together.
4776-
* @return A new {@code Expr} representing the logical 'XOR' operation.
4776+
* @return A new {@code BooleanExpr} representing the logical 'XOR' operation.
47774777
*/
47784778
export function xor(
47794779
first: BooleanExpr,

0 commit comments

Comments
 (0)