File tree 1 file changed +2
-2
lines changed
1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -41,7 +41,7 @@ extern const NSInteger RACSignalErrorNoMatchingCase;
41
41
42
42
// / Do the given block on `error`. This should be used to inject side effects
43
43
// / into the signal.
44
- - (RACSignal *)doError : (void (^)(NSError * _Nonnull error))block RAC_WARN_UNUSED_RESULT;
44
+ - (RACSignal *)doError : (void (^)(NSError * _Nullable error))block RAC_WARN_UNUSED_RESULT;
45
45
46
46
// / Do the given block on `completed`. This should be used to inject side effects
47
47
// / into the signal.
@@ -381,7 +381,7 @@ extern const NSInteger RACSignalErrorNoMatchingCase;
381
381
- (RACSignal *)takeUntilReplacement : (RACSignal *)replacement RAC_WARN_UNUSED_RESULT;
382
382
383
383
// / Subscribes to the returned signal when an error occurs.
384
- - (RACSignal *)catch : (RACSignal * (^)(NSError * _Nonnull error))catchBlock RAC_WARN_UNUSED_RESULT;
384
+ - (RACSignal *)catch : (RACSignal * (^)(NSError * _Nullable error))catchBlock RAC_WARN_UNUSED_RESULT;
385
385
386
386
// / Subscribes to the given signal when an error occurs.
387
387
- (RACSignal *)catchTo : (RACSignal *)signal RAC_WARN_UNUSED_RESULT;
You can’t perform that action at this time.
0 commit comments