Skip to content

Commit 8715321

Browse files
committed
Small fixes for documentation.
1 parent 55f2962 commit 8715321

File tree

3 files changed

+4
-2
lines changed

3 files changed

+4
-2
lines changed

Documentation/DesignRationale.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ There isn't much you can do with them without figuring out what will be the resu
2323

2424
Will it be `E1`, `E2` or some new `E3` maybe? So you need a new set of operators just to solve that impedance mismatch.
2525

26-
This for sure hurts composition properties, and Rx really doesn't care about why sequence fails, it just forwards failure further.
26+
This for sure hurts composition properties, and Rx really doesn't care about why sequence fails, it just usually forwards failure further down the observable chain.
2727

2828
There is additional problem that maybe in some cases operators will fail for some internal error, and in that case you won't be able to construct resulting error and report failure.
2929

Documentation/GettingStarted.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -996,7 +996,7 @@ extension NSObject {
996996
#endif
997997
```
998998

999-
**If Swift compiler doesn't have a way to deduct observed type (return Observable type), it will report error that the function doesn't exists.**
999+
**If Swift compiler doesn't have a way to deduce observed type (return Observable type), it will report error about function not existing.**
10001000

10011001
Here are some ways you can give him hints about observed type:
10021002

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
<img src="assets/Rx_Logo_M.png" width="36" height="36"> RxSwift: ReactiveX for Swift
22
======================================
33

4+
[![Travis CI](https://travis-ci.org/kzaher/RxSwift.svg?branch=master)](https://travis-ci.org/kzaher/RxSwift)
5+
46
Xcode 6.3 / Swift 1.2 required
57

68
Rx is a [generic abstraction of computation](https://youtu.be/looJcaeboBY) expressed through `Observable<Element>` interface.

0 commit comments

Comments
 (0)