Skip to content

Commit cf1c4b0

Browse files
committed
Fixes
1 parent 508d79d commit cf1c4b0

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

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

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4678,7 +4678,7 @@ export function eqAny(
46784678
/**
46794679
* @beta
46804680
*
4681-
* Creates an expression that checks if an expression is not equal to any of the provided values
4681+
* Creates an expression that checks if an expression is not equal to all the provided values
46824682
* or expressions.
46834683
*
46844684
* ```typescript
@@ -4698,7 +4698,7 @@ export function notEqAny(
46984698
/**
46994699
* @beta
47004700
*
4701-
* Creates an expression that checks if a field's value is not equal to any of the provided values
4701+
* Creates an expression that checks if a field's value is not equal to all the provided values
47024702
* or expressions.
47034703
*
47044704
* ```typescript
@@ -4718,7 +4718,7 @@ export function notEqAny(
47184718
/**
47194719
* @beta
47204720
*
4721-
* Creates an expression that checks if an expression is not equal to any of the provided values
4721+
* Creates an expression that checks if an expression is not equal to all the provided values
47224722
* or expressions.
47234723
*
47244724
* ```typescript
@@ -4735,7 +4735,7 @@ export function notEqAny(element: Expr, arrayExpression: Expr): BooleanExpr;
47354735
/**
47364736
* @beta
47374737
*
4738-
* Creates an expression that checks if a field's value is not equal to any of the values in the evaluated expression.
4738+
* Creates an expression that checks if a field's value is not equal to all the values in the evaluated expression.
47394739
*
47404740
* ```typescript
47414741
* // Check if the 'status' field is not equal to any value in the field 'rejectedStatuses'

0 commit comments

Comments
 (0)