From c4512368312aeee5ad4dfda28c68293705cc3375 Mon Sep 17 00:00:00 2001 From: Allan Wang Date: Sat, 12 Aug 2017 23:28:44 -0700 Subject: [PATCH] Update Schedulers.java --- src/main/java/io/reactivex/schedulers/Schedulers.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/io/reactivex/schedulers/Schedulers.java b/src/main/java/io/reactivex/schedulers/Schedulers.java index 0847837793..12d9d50332 100644 --- a/src/main/java/io/reactivex/schedulers/Schedulers.java +++ b/src/main/java/io/reactivex/schedulers/Schedulers.java @@ -141,7 +141,7 @@ public static Scheduler computation() { * This can be used for asynchronously performing blocking IO. *

* The implementation is backed by a pool of single-threaded {@link ScheduledExecutorService} instances - * that will try to reuse previoulsy started instances used by the worker + * that will try to reuse previously started instances used by the worker * returned by {@link io.reactivex.Scheduler#createWorker()} but otherwise will start a new backing * {@link ScheduledExecutorService} instance. Note that this scheduler may create an unbounded number * of worker threads that can result in system slowdowns or {@code OutOfMemoryError}. Therefore, for casual uses