aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
-rw-r--r--Firestore/Example/Tests/Integration/API/FIRDatabaseTests.m4
-rw-r--r--Firestore/Source/API/FIRDocumentSnapshot.m8
-rw-r--r--Firestore/Source/Public/FIRDocumentSnapshot.h4
3 files changed, 8 insertions, 8 deletions
diff --git a/Firestore/Example/Tests/Integration/API/FIRDatabaseTests.m b/Firestore/Example/Tests/Integration/API/FIRDatabaseTests.m
index aa0c5a3..d1ffeca 100644
--- a/Firestore/Example/Tests/Integration/API/FIRDatabaseTests.m
+++ b/Firestore/Example/Tests/Integration/API/FIRDatabaseTests.m
@@ -16,9 +16,9 @@
@import FirebaseFirestore;
-#import <XCTest/XCTest.h>
-#import <FirebaseFirestore/FIRFirestore.h>
#import <FirebaseFirestore/FIRCollectionReference.h>
+#import <FirebaseFirestore/FIRFirestore.h>
+#import <XCTest/XCTest.h>
#import "Firestore/Example/Tests/Util/FSTIntegrationTestCase.h"
#import "Firestore/Source/API/FIRFirestore+Internal.h"
diff --git a/Firestore/Source/API/FIRDocumentSnapshot.m b/Firestore/Source/API/FIRDocumentSnapshot.m
index 0aba639..c917094 100644
--- a/Firestore/Source/API/FIRDocumentSnapshot.m
+++ b/Firestore/Source/API/FIRDocumentSnapshot.m
@@ -178,10 +178,10 @@ NS_ASSUME_NONNULL_BEGIN
documentKey:(FSTDocumentKey *)documentKey
document:(FSTDocument *)document
fromCache:(BOOL)fromCache {
- self = [super initWithFirestore:firestore
- documentKey:documentKey
- document:document
- fromCache:fromCache];
+ self = [super initWithFirestore:firestore
+ documentKey:documentKey
+ document:document
+ fromCache:fromCache];
return self;
}
diff --git a/Firestore/Source/Public/FIRDocumentSnapshot.h b/Firestore/Source/Public/FIRDocumentSnapshot.h
index 9706edd..9ba6f34 100644
--- a/Firestore/Source/Public/FIRDocumentSnapshot.h
+++ b/Firestore/Source/Public/FIRDocumentSnapshot.h
@@ -67,8 +67,8 @@ NS_SWIFT_NAME(DocumentSnapshot)
/**
* A `FIRDocumentSnapshot` contains data read from a document in your Firestore database. The
- * document is guaranteed to exist and its data can be extracted with the `data` property or by using
- * subscript syntax to access a specific field.
+ * document is guaranteed to exist and its data can be extracted with the `data` property or by
+ * using subscript syntax to access a specific field.
*/
NS_SWIFT_NAME(QueryDocumentSnapshot)
@interface FIRQueryDocumentSnapshot : FIRDocumentSnapshot