Skip to content

Commit 5d2e8fb

Browse files
committed
2.x: fix Schedulers.io() javadoc {link missing the @ symbol
1 parent 340bed9 commit 5d2e8fb

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/main/java/io/reactivex/schedulers/Schedulers.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -140,10 +140,10 @@ public static Scheduler computation() {
140140
* <p>
141141
* This can be used for asynchronously performing blocking IO.
142142
* <p>
143-
* The implementation is backed by a pool of single-threaded {link ScheduledExecutorService} instances
143+
* The implementation is backed by a pool of single-threaded {@link ScheduledExecutorService} instances
144144
* that will try to reuse previoulsy started instances used by the worker
145145
* returned by {@link io.reactivex.Scheduler#createWorker()} but otherwise will start a new backing
146-
* {link ScheduledExecutorService} instance. Note that this scheduler may create an unbounded number
146+
* {@link ScheduledExecutorService} instance. Note that this scheduler may create an unbounded number
147147
* of worker threads that can result in system slowdowns or {@code OutOfMemoryError}. Therefore, for casual uses
148148
* or when implementing an operator, the Worker instances must be disposed via {@link io.reactivex.Scheduler.Worker#dispose()}.
149149
* <p>

0 commit comments

Comments
 (0)