From dc01fb93055472676b0e9a70fb3713c41576f457 Mon Sep 17 00:00:00 2001 From: Fero Date: Wed, 4 Nov 2020 11:45:04 +0100 Subject: [PATCH] Fix typo --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index f58f5fa..6e09df1 100644 --- a/README.md +++ b/README.md @@ -9,7 +9,7 @@ ## RxSwift Caveats -Do to the lack of typed errors in RxSwift (which are heavily relied upon in ReactiveSwift and Combine) we lose some safety in this port, and it is on the consumer to take extra precautions to ensure an error never makes its way into the `Store`. One way to achieve this is with the [Materialize](https://github.com/ReactiveX/RxSwift/blob/master/RxSwift/Observables/Materialize.swift) operator or several other [popular error handling techniques](http://dukhovich.net/rxswift/error-handling/). An `assertionFailure` has been added to the `Store` class in order to prevent errors from unintentionally propagating further. An `_XCTFail` has also been added to the `TestStore` to ensure errors thrown during testing are caught early on as well. +Due to the lack of typed errors in RxSwift (which are heavily relied upon in ReactiveSwift and Combine) we lose some safety in this port, and it is on the consumer to take extra precautions to ensure an error never makes its way into the `Store`. One way to achieve this is with the [Materialize](https://github.com/ReactiveX/RxSwift/blob/master/RxSwift/Observables/Materialize.swift) operator or several other [popular error handling techniques](http://dukhovich.net/rxswift/error-handling/). An `assertionFailure` has been added to the `Store` class in order to prevent errors from unintentionally propagating further. An `_XCTFail` has also been added to the `TestStore` to ensure errors thrown during testing are caught early on as well. ## TODOs