Skip to content

Commit

Permalink
2.x: fix Schedulers.io() javadoc {link missing the @ symbol
Browse files Browse the repository at this point in the history
  • Loading branch information
akarnokd committed Jul 18, 2017
1 parent 340bed9 commit 5d2e8fb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main/java/io/reactivex/schedulers/Schedulers.java
Original file line number Diff line number Diff line change
Expand Up @@ -140,10 +140,10 @@ public static Scheduler computation() {
* <p>
* This can be used for asynchronously performing blocking IO.
* <p>
* 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()}.
* <p>
Expand Down

0 comments on commit 5d2e8fb

Please sign in to comment.