Skip to content

Commit 38dfd75

Browse files
Comment
1 parent bb8fdaf commit 38dfd75

File tree

2 files changed

+4
-5
lines changed

2 files changed

+4
-5
lines changed

packages/firestore/src/core/target.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -333,8 +333,8 @@ export function targetGetLowerBound(
333333
filterValue = MIN_VALUE;
334334
break;
335335
case Operator.NOT_IN:
336-
// Porting Note: The Web SDK implements NotIn queries differently from
337-
// Android and only uses a single element array as a NotIn bound.
336+
// Porting Note: The Web SDK implements notIn queries differently from
337+
// Android and only uses a single element array as a notIn bound.
338338
filterValue = {
339339
arrayValue: { values: [MIN_VALUE] }
340340
};
@@ -419,8 +419,8 @@ export function targetGetUpperBound(
419419
filterValue = MAX_VALUE;
420420
break;
421421
case Operator.NOT_IN:
422-
// Porting Note: The Web SDK implements NotIn queries differently from
423-
// Android and only uses a single element array as a NotIn bound.
422+
// Porting Note: The Web SDK implements notIn queries differently from
423+
// Android and only uses a single element array as a notIn bound.
424424
filterValue = {
425425
arrayValue: { values: [MAX_VALUE] }
426426
};

packages/firestore/test/unit/api/bytes.test.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,6 @@ describe('Bytes', () => {
4747
});
4848
});
4949

50-
5150
it('works with instanceof checks', () => {
5251
expect(Bytes.fromBase64String('') instanceof Bytes).to.equal(true);
5352
});

0 commit comments

Comments
 (0)