From c038e7bb8436533ea5ec91c191b9da2357d29379 Mon Sep 17 00:00:00 2001 From: Matt Fenwick Date: Tue, 14 Jun 2016 10:35:36 -0500 Subject: [PATCH] fix sentence structure --- Documentation/Schedulers.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Documentation/Schedulers.md b/Documentation/Schedulers.md index 01989baf..6dbe7cc3 100644 --- a/Documentation/Schedulers.md +++ b/Documentation/Schedulers.md @@ -45,7 +45,7 @@ Since schedulers can really be anything, and all operators that transform sequen In case the scheduler is concurrent, Rx's `observeOn` and `subscribeOn` operators will make sure everything works perfectly. -If you use some scheduler that for which Rx can prove that it's serial, it will able to perform additional optimizations. +If you use some scheduler that Rx can prove is serial, it will be able to perform additional optimizations. So far it only performs those optimizations for dispatch queue schedulers.