File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
packages/firestore/src/local Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -44,7 +44,7 @@ export class IndexedDbQueryCache implements QueryCache {
44
44
constructor ( private serializer : LocalSerializer ) { }
45
45
46
46
/**
47
- * The last received snapshot version. We store this seperately from the
47
+ * The last received snapshot version. We store this separately from the
48
48
* metadata to avoid the extra conversion to/from DbTimestamp.
49
49
*/
50
50
private lastRemoteSnapshotVersion = SnapshotVersion . MIN ;
@@ -173,7 +173,7 @@ export class IndexedDbQueryCache implements QueryCache {
173
173
) : PersistencePromise < QueryData | null > {
174
174
// Iterating by the canonicalId may yield more than one result because
175
175
// canonicalId values are not required to be unique per target. This query
176
- // depends on the queryTargets index to be efficent .
176
+ // depends on the queryTargets index to be efficient .
177
177
const canonicalId = query . canonicalId ( ) ;
178
178
const range = IDBKeyRange . bound (
179
179
[ canonicalId , Number . NEGATIVE_INFINITY ] ,
@@ -202,7 +202,7 @@ export class IndexedDbQueryCache implements QueryCache {
202
202
targetId : TargetId
203
203
) : PersistencePromise < void > {
204
204
// PORTING NOTE: The reverse index (documentsTargets) is maintained by
205
- // Indexeddb .
205
+ // IndexedDb .
206
206
const promises : Array < PersistencePromise < void > > = [ ] ;
207
207
const store = documentTargetStore ( txn ) ;
208
208
keys . forEach ( key => {
You can’t perform that action at this time.
0 commit comments