From 77a761a1a8004ee62697a1faf770c6d25dac78e4 Mon Sep 17 00:00:00 2001 From: zxu Date: Thu, 17 May 2018 14:59:14 -0400 Subject: fix lint to run copybara (#1290) * fix lint to run copybara * address changes --- Firestore/Source/Public/FIRDocumentReference.h | 3 ++- Firestore/Source/Public/FIRQuery.h | 3 ++- Firestore/core/src/firebase/firestore/util/executor_std.h | 2 +- 3 files changed, 5 insertions(+), 3 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 diff --git a/Firestore/core/src/firebase/firestore/util/executor_std.h b/Firestore/core/src/firebase/firestore/util/executor_std.h index 8f2be02..b6f0b6b 100644 --- a/Firestore/core/src/firebase/firestore/util/executor_std.h +++ b/Firestore/core/src/firebase/firestore/util/executor_std.h @@ -41,7 +41,7 @@ namespace async { // the exact same time are prioritized in FIFO order. // // The main function of `Schedule` is `PopBlocking`, which sleeps until an entry -// becomes available. It correctly handles entries being asynchonously added or +// becomes available. It correctly handles entries being asynchronously added or // removed from the schedule. // // The details of time management are completely concealed within the class. -- cgit v1.2.3