We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 96aac51 commit 385d3cfCopy full SHA for 385d3cf
firebase-firestore/src/main/java/com/google/firebase/firestore/core/FieldFilter.java
@@ -195,7 +195,7 @@ BooleanExpr toPipelineExpr() {
195
if (value.hasNullValue()) {
196
return and(exists, x.isNull());
197
} else if (isNanValue(value)) {
198
- // The isNotNan will error on non-numeric values.
+ // The isNan will error on non-numeric values.
199
return and(exists, ifError(x.isNan(), Expr.constant(false)));
200
} else {
201
return and(exists, x.eq(value));
0 commit comments