Skip to content

Commit

Permalink
Update README
Browse files Browse the repository at this point in the history
  • Loading branch information
marty-suzuki committed Jan 25, 2020
1 parent 7edff6e commit 0bc4805
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -229,8 +229,8 @@ Be able to define a subclass of UnioStream like this.
```swift
final class GitHubSearchViewStream: UnioStream<GitHubSearchViewStream> {

init() {
super.init(input: Input(), state: State(), extra: Extra())
convenience init() {
self.init(input: Input(), state: State(), extra: Extra())
}
}
```
Expand All @@ -251,8 +251,8 @@ protocol GitHubSearchViewStreamType: AnyObject {

final class GitHubSearchViewStream: UnioStream<GitHubSearchViewStream>, GitHubSearchViewStreamType {

init() {
super.init(input: Input(), state: State(), extra: Extra())
convenience init() {
self.init(input: Input(), state: State(), extra: Extra())
}

typealias State = NoState
Expand Down Expand Up @@ -319,6 +319,7 @@ The documentation which does not use `KeyPath Dynamic Member Lookup` is [here](h

- [Unio 0.5.0 Migration Guide](./Documentation/Unio0_5_0MigrationGuide.md)
- [Unio 0.6.0 Migration Guide](./Documentation/Unio0_6_0MigrationGuide.md)
- [Unio 0.9.0 Migration Guide](./Documentation/Unio0_9_0MigrationGuide.md)

### Xcode Template

Expand Down

0 comments on commit 0bc4805

Please sign in to comment.