From 544e00d917cd4c216ae15c34aeb2549d531a3f61 Mon Sep 17 00:00:00 2001 From: nishitani yuki Date: Mon, 1 Aug 2016 13:52:57 +0900 Subject: [PATCH] Fix minor typo --- Documentation/Schedulers.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Documentation/Schedulers.md b/Documentation/Schedulers.md index 6dbe7cc3..331f5e39 100644 --- a/Documentation/Schedulers.md +++ b/Documentation/Schedulers.md @@ -13,7 +13,7 @@ There are two main operators that work with schedulers, `observeOn` and `subscri If you want to perform work on a different scheduler just use `observeOn(scheduler)` operator. -You would usually use `observeOn` a lot more often then `subscribeOn`. +You would usually use `observeOn` a lot more often than `subscribeOn`. In case `observeOn` isn't explicitly specified, work will be performed on whichever thread/scheduler elements are generated.