Skip to content

Commit ededa71

Browse files
committed
Fixes
1 parent fe811df commit ededa71

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
@@ -3148,7 +3148,7 @@ export function isAbsent(value: Expr | string): BooleanExpr {
31483148
* ```
31493149
*
31503150
* @param value The expression to check.
3151-
* @return A new {@code Expr} representing the 'isNaN' check.
3151+
* @return A new {@code BooleanExpr} representing the 'isNull' check.
31523152
*/
31533153
export function isNull(value: Expr): BooleanExpr;
31543154

@@ -3163,7 +3163,7 @@ export function isNull(value: Expr): BooleanExpr;
31633163
* ```
31643164
*
31653165
* @param value The name of the field to check.
3166-
* @return A new {@code Expr} representing the 'isNaN' check.
3166+
* @return A new {@code BooleanExpr} representing the 'isNull' check.
31673167
*/
31683168
export function isNull(value: string): BooleanExpr;
31693169
export function isNull(value: Expr | string): BooleanExpr {
@@ -3181,7 +3181,7 @@ export function isNull(value: Expr | string): BooleanExpr {
31813181
* ```
31823182
*
31833183
* @param value The expression to check.
3184-
* @return A new {@code Expr} representing the 'isNaN' check.
3184+
* @return A new {@code BooleanExpr} representing the 'isNotNull' check.
31853185
*/
31863186
export function isNotNull(value: Expr): BooleanExpr;
31873187

@@ -3196,7 +3196,7 @@ export function isNotNull(value: Expr): BooleanExpr;
31963196
* ```
31973197
*
31983198
* @param value The name of the field to check.
3199-
* @return A new {@code Expr} representing the 'isNaN' check.
3199+
* @return A new {@code BooleanExpr} representing the 'isNotNull' check.
32003200
*/
32013201
export function isNotNull(value: string): BooleanExpr;
32023202
export function isNotNull(value: Expr | string): BooleanExpr {
@@ -3214,7 +3214,7 @@ export function isNotNull(value: Expr | string): BooleanExpr {
32143214
* ```
32153215
*
32163216
* @param value The expression to check.
3217-
* @return A new {@code Expr} representing the 'isNotNaN' check.
3217+
* @return A new {@code BooleanExpr} representing the 'isNotNaN' check.
32183218
*/
32193219
export function isNotNan(value: Expr): BooleanExpr;
32203220

@@ -3229,7 +3229,7 @@ export function isNotNan(value: Expr): BooleanExpr;
32293229
* ```
32303230
*
32313231
* @param value The name of the field to check.
3232-
* @return A new {@code Expr} representing the 'isNotNaN' check.
3232+
* @return A new {@code BooleanExpr} representing the 'isNotNaN' check.
32333233
*/
32343234
export function isNotNan(value: string): BooleanExpr;
32353235
export function isNotNan(value: Expr | string): BooleanExpr {

0 commit comments

Comments
 (0)