From 5d2e8fb4363f18c5cbb247e2d4c6ed1c71527128 Mon Sep 17 00:00:00 2001 From: akarnokd Date: Tue, 18 Jul 2017 16:51:40 +0200 Subject: [PATCH] 2.x: fix Schedulers.io() javadoc {link missing the @ symbol --- src/main/java/io/reactivex/schedulers/Schedulers.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main/java/io/reactivex/schedulers/Schedulers.java b/src/main/java/io/reactivex/schedulers/Schedulers.java index e7ec90bd57..0847837793 100644 --- a/src/main/java/io/reactivex/schedulers/Schedulers.java +++ b/src/main/java/io/reactivex/schedulers/Schedulers.java @@ -140,10 +140,10 @@ 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 + * 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 * 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 + * {@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 * or when implementing an operator, the Worker instances must be disposed via {@link io.reactivex.Scheduler.Worker#dispose()}. *