Skip to content

Commit

Permalink
update Readme
Browse files Browse the repository at this point in the history
  • Loading branch information
nghialv committed Jun 4, 2015
1 parent af105e7 commit eaec13a
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -140,6 +140,19 @@ f3.onComplete { result in

- `recover`
- `zip`

```swift
let f1 = searchRepositories("Future")
let f2 = requestUser("nghialv")

let f3 = f1.zip(f2)

f3.onSuccess { repos, user in
println(repos)
println(user)
}
```

- `flatten`


Expand Down

0 comments on commit eaec13a

Please sign in to comment.