Skip to content
This repository was archived by the owner on May 13, 2020. It is now read-only.

Commit 174c20c

Browse files
committed
Fix README
1 parent b62da15 commit 174c20c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -284,7 +284,7 @@ The actions declared in the array will be executed sequentially 👌.
284284

285285
### Asynchronicity
286286

287-
Making an Array of Actions be an Action itself is neat, but since we're using Reactive Programming, RxReduxe also applies this technic to Observables. It provides a very elegant way to disptach an Observable\<Action\> to the Store (because Observable\<Action\> is also an Action), making asynchronous actions very simple.
287+
Making an Array of Actions be an Action itself is neat, but since we're using Reactive Programming, RxReduxe also applies this technic to Observables. It provides a very elegant way to dispatch an Observable\<Action\> to the Store (because Observable\<Action\> is also an Action), making asynchronous actions very simple.
288288

289289
```swift
290290
let increaseAction = Observable<Int>.interval(1, scheduler: MainScheduler.instance).map { _ in IncreaseAction(increment: 1) }
@@ -316,5 +316,5 @@ A demo application is provided to illustrate the core mechanisms, such as asynch
316316
RxReduce relies on:
317317

318318
- SwiftLint for static code analysis ([Github SwiftLint](https://github.com/realm/SwiftLint))
319-
- RxSwift to expose State and Actions as Observables the your app and the Store can react to ([Github RxSwift](https://github.com/ReactiveX/RxSwift))
319+
- RxSwift to expose State and Actions as Observables your app and the Store can react to ([Github RxSwift](https://github.com/ReactiveX/RxSwift))
320320
- Reusable in the Demo App to ease the storyboard cutting into atomic ViewControllers ([Github Reusable](https://github.com/AliSoftware/Reusable))

0 commit comments

Comments
 (0)