From d1713a8ac55f87870bf4d8a710fbf119871fba51 Mon Sep 17 00:00:00 2001 From: Jeon Suyeol Date: Thu, 26 May 2016 04:17:52 +0900 Subject: [PATCH] Fix typo in Documentation/Units.md --- Documentation/Units.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 } = ... ```