File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -1053,7 +1053,7 @@ export class DocumentReference implements firestore.DocumentReference {
1053
1053
}
1054
1054
1055
1055
delete ( ) : Promise < void > {
1056
- validateExactNumberOfArgs ( 'FirebaseFirestore .delete' , arguments , 0 ) ;
1056
+ validateExactNumberOfArgs ( 'DocumentReference .delete' , arguments , 0 ) ;
1057
1057
return this . _firestoreClient . write ( [
1058
1058
new DeleteMutation ( this . _key , Precondition . NONE )
1059
1059
] ) ;
Original file line number Diff line number Diff line change @@ -188,7 +188,7 @@ export class AsyncQueue {
188
188
// The last promise in the queue.
189
189
private tail : Promise < unknown > = Promise . resolve ( ) ;
190
190
191
- // Is this AsyncQueue being shutting down? Once it is set to true, it will not
191
+ // Is this AsyncQueue being shut down? Once it is set to true, it will not
192
192
// be changed again.
193
193
private _isShuttingDown : boolean = false ;
194
194
@@ -203,7 +203,7 @@ export class AsyncQueue {
203
203
// assertion sanity-checks.
204
204
private operationInProgress = false ;
205
205
206
- // Is this AsyncQueue being shutting down? If true, this instance will not enqueue
206
+ // Is this AsyncQueue being shut down? If true, this instance will not enqueue
207
207
// any new operations, Promises from enqueue requests will not resolve.
208
208
get isShuttingDown ( ) : boolean {
209
209
return this . _isShuttingDown ;
You can’t perform that action at this time.
0 commit comments