@@ -323,7 +323,7 @@ - (void)testGetDocumentWhileOfflineServerOnly {
323
323
// go offline for the rest of this test
324
324
[self disableNetwork ];
325
325
326
- // attempt to get doc and ensure it cannot be retreived
326
+ // attempt to get doc and ensure it cannot be retrieved
327
327
XCTestExpectation *failedGetDocCompletion = [self expectationWithDescription: @" failedGetDoc" ];
328
328
[doc getDocumentWithSource: FIRFirestoreSourceServer
329
329
completion: ^(FIRDocumentSnapshot *, NSError *error) {
@@ -349,7 +349,7 @@ - (void)testGetCollectionWhileOfflineServerOnly {
349
349
// go offline for the rest of this test
350
350
[self disableNetwork ];
351
351
352
- // attempt to get docs and ensure they cannot be retreived
352
+ // attempt to get docs and ensure they cannot be retrieved
353
353
XCTestExpectation *failedGetDocsCompletion = [self expectationWithDescription: @" failedGetDocs" ];
354
354
[col getDocumentsWithSource: FIRFirestoreSourceServer
355
355
completion: ^(FIRQuerySnapshot *, NSError *error) {
@@ -403,7 +403,7 @@ - (void)testGetDocumentWhileOfflineWithDifferentSource {
403
403
XCTAssertTrue (result.metadata .hasPendingWrites );
404
404
XCTAssertEqualObjects (result.data , newData);
405
405
406
- // attempt to get doc (from the server) and ensure it cannot be retreived
406
+ // attempt to get doc (from the server) and ensure it cannot be retrieved
407
407
XCTestExpectation *failedGetDocCompletion = [self expectationWithDescription: @" failedGetDoc" ];
408
408
[doc getDocumentWithSource: FIRFirestoreSourceServer
409
409
completion: ^(FIRDocumentSnapshot *, NSError *error) {
@@ -477,7 +477,7 @@ - (void)testGetCollectionWhileOfflineWithDifferentSource {
477
477
@[ @(FIRDocumentChangeTypeAdded), @" doc4" , @{@" key4" : @" value4" } ]
478
478
]));
479
479
480
- // attempt to get docs (from the server) and ensure they cannot be retreived
480
+ // attempt to get docs (from the server) and ensure they cannot be retrieved
481
481
XCTestExpectation *failedGetDocsCompletion = [self expectationWithDescription: @" failedGetDocs" ];
482
482
[col getDocumentsWithSource: FIRFirestoreSourceServer
483
483
completion: ^(FIRQuerySnapshot *, NSError *error) {
@@ -688,7 +688,7 @@ - (void)testGetNonExistingCollectionWhileOfflineServerOnly {
688
688
// go offline for the rest of this test
689
689
[self disableNetwork ];
690
690
691
- // attempt to get collection and ensure that it cannot be retreived
691
+ // attempt to get collection and ensure that it cannot be retrieved
692
692
XCTestExpectation *failedGetDocsCompletion = [self expectationWithDescription: @" failedGetDocs" ];
693
693
[col getDocumentsWithSource: FIRFirestoreSourceServer
694
694
completion: ^(FIRQuerySnapshot *, NSError *error) {
0 commit comments