diff options
Diffstat (limited to 'Firestore/Source')
-rw-r--r-- | Firestore/Source/Public/FIRDocumentReference.h | 3 | ||||
-rw-r--r-- | Firestore/Source/Public/FIRQuery.h | 3 |
2 files changed, 4 insertions, 2 deletions
diff --git a/Firestore/Source/Public/FIRDocumentReference.h b/Firestore/Source/Public/FIRDocumentReference.h index 7baa30a..216a8dc 100644 --- a/Firestore/Source/Public/FIRDocumentReference.h +++ b/Firestore/Source/Public/FIRDocumentReference.h @@ -225,7 +225,8 @@ NS_SWIFT_NAME(DocumentReference) * @param completion a block to execute once the document has been successfully read. */ // clang-format off -- (void)getDocumentWithSource:(FIRFirestoreSource)source completion:(FIRDocumentSnapshotBlock)completion +- (void)getDocumentWithSource:(FIRFirestoreSource)source + completion:(FIRDocumentSnapshotBlock)completion NS_SWIFT_NAME(getDocument(source:completion:)); // clang-format on diff --git a/Firestore/Source/Public/FIRQuery.h b/Firestore/Source/Public/FIRQuery.h index 946cf06..799abcc 100644 --- a/Firestore/Source/Public/FIRQuery.h +++ b/Firestore/Source/Public/FIRQuery.h @@ -66,7 +66,8 @@ NS_SWIFT_NAME(Query) * documentSet will be `nil` only if error is `non-nil`. */ // clang-format off -- (void)getDocumentsWithSource:(FIRFirestoreSource)source completion:(FIRQuerySnapshotBlock)completion +- (void)getDocumentsWithSource:(FIRFirestoreSource)source + completion:(FIRQuerySnapshotBlock)completion NS_SWIFT_NAME(getDocuments(source:completion:)); // clang-format on |