Merge pull request #711 from devxoul/fix-typo-docs-units

Fix typo in Documentation/Units.md
This commit is contained in:
Krunoslav Zaher 2016-05-26 14:10:50 +02:00
commit eeabccf348
1 changed files with 1 additions and 1 deletions

View File

@ -71,7 +71,7 @@ Rx units define operations by using corresponding observable sequence operations
The `map` operation on `Driver` is defined using the `map` operation on its observable sequence.
```swift
let d: Driver<Int> = Drive.just(11)
let d: Driver<Int> = Driver.just(11)
driver.map { $0 / 0.5 } = ...
```