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