aboutsummaryrefslogtreecommitdiffhomepage
path: root/Firestore/Example/Tests/Util
diff options
context:
space:
mode:
authorGravatar Sebastian Schmidt <mrschmidt@google.com>2017-12-12 07:11:39 +0800
committerGravatar Sebastian Schmidt <mrschmidt@google.com>2017-12-12 07:11:39 +0800
commit5b1ca51e7264b5ac581c7a0382beb44ed65bdf14 (patch)
tree8fc0ba38792944b8e6d599eaa11896d66b3801da /Firestore/Example/Tests/Util
parent64066c643d4e1fff7d00d656201d056f10fb2c36 (diff)
Addressing comments
Diffstat (limited to 'Firestore/Example/Tests/Util')
-rw-r--r--Firestore/Example/Tests/Util/FSTEventAccumulator.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/Firestore/Example/Tests/Util/FSTEventAccumulator.h b/Firestore/Example/Tests/Util/FSTEventAccumulator.h
index e32f08b..424f4c8 100644
--- a/Firestore/Example/Tests/Util/FSTEventAccumulator.h
+++ b/Firestore/Example/Tests/Util/FSTEventAccumulator.h
@@ -23,8 +23,8 @@
NS_ASSUME_NONNULL_BEGIN
-typedef void (^FSTValueEventHandler)(id _Nullable, NSError *error);
-typedef void (^FSTErrorEventHandler)(NSError *error);
+typedef void (^FSTValueEventHandler)(id _Nullable, NSError *_Nullable error);
+typedef void (^FSTErrorEventHandler)(NSError *_Nullable error);
@interface FSTEventAccumulator : NSObject