File tree 1 file changed +3
-3
lines changed
packages/firestore/src/local 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -873,14 +873,14 @@ export class IndexedDbIndexManager implements IndexManager {
873
873
const bounds : IndexEntry [ ] = [ ] ;
874
874
bounds . push ( lower ) ;
875
875
for ( const notInValue of notInValues ) {
876
- const cpmToLower = indexEntryComparator ( notInValue , lower ) ;
876
+ const cmpToLower = indexEntryComparator ( notInValue , lower ) ;
877
877
const cmpToUpper = indexEntryComparator ( notInValue , upper ) ;
878
878
879
- if ( cpmToLower === 0 ) {
879
+ if ( cmpToLower === 0 ) {
880
880
// `notInValue` is the lower bound. We therefore need to raise the bound
881
881
// to the next value.
882
882
bounds [ 0 ] = lower . successor ( ) ;
883
- } else if ( cpmToLower > 0 && cmpToUpper < 0 ) {
883
+ } else if ( cmpToLower > 0 && cmpToUpper < 0 ) {
884
884
// `notInValue` is in the middle of the range
885
885
bounds . push ( notInValue ) ;
886
886
bounds . push ( notInValue . successor ( ) ) ;
You can’t perform that action at this time.
0 commit comments