aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorGravatar zxu <zxu@google.com>2018-05-17 14:59:14 -0400
committerGravatar GitHub <noreply@github.com>2018-05-17 14:59:14 -0400
commit77a761a1a8004ee62697a1faf770c6d25dac78e4 (patch)
tree55698fcdbeed895a8a76b40b1233821120291753
parent0ec836f9ca71b27fa54a11ae9e07e60b8c5cc002 (diff)
fix lint to run copybara (#1290)
* fix lint to run copybara * address changes
-rw-r--r--Firestore/Source/Public/FIRDocumentReference.h3
-rw-r--r--Firestore/Source/Public/FIRQuery.h3
-rw-r--r--Firestore/core/src/firebase/firestore/util/executor_std.h2
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.