Update Examples.md

This commit is contained in:
Darren 2016-01-10 18:53:52 +08:00
parent 09c790ee95
commit 95f2748738
1 changed files with 2 additions and 2 deletions

View File

@ -9,7 +9,7 @@ Examples
## Calculated variable
Let's first start with some imperative swift code.
Let's first start with some imperative swift code.Sw
The purpose of example is to bind identifier `c` to a value calculated from `a` and `b` if some condition is satisfied.
Here is the imperative swift code that calculates the value of `c`:
@ -34,7 +34,7 @@ a = 4 // c will still be equal "3 is positive" which is not good
This is not the wanted behavior.
To integrate RxSwift framework into your project just include framework in your project and write `import RxSwit`.
To integrate RxSwift framework into your project just include framework in your project and write `import RxSwift`.
This is the same logic using RxSwift.