diff --git a/Documentation/Units.md b/Documentation/Units.md index ccf273e5..77dd5976 100644 --- a/Documentation/Units.md +++ b/Documentation/Units.md @@ -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 = Drive.just(11) +let d: Driver = Driver.just(11) driver.map { $0 / 0.5 } = ... ```