Skip to content

Commit 3152d0e

Browse files
scaladoc links in ThreadPoolForXxxScheduler
1 parent 24e0baf commit 3152d0e

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

language-adaptors/rxjava-scala/src/main/scala/rx/lang/scala/concurrency/ThreadPoolForComputationScheduler.scala

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,9 +26,9 @@ object ThreadPoolForComputationScheduler {
2626
*
2727
* This can be used for event-loops, processing callbacks and other computational work.
2828
*
29-
* Do not perform IO-bound work on this scheduler. Use [[rx.lang.scala.concurrency.Schedulers.threadPoolForIO]] instead.
29+
* Do not perform IO-bound work on this scheduler. Use [[rx.lang.scala.concurrency.ThreadPoolForIOScheduler]] instead.
3030
*/
31-
def apply(): ThreadPoolForComputationScheduler = {
31+
def apply(): ThreadPoolForComputationScheduler = {
3232
new ThreadPoolForComputationScheduler(rx.concurrency.Schedulers.threadPoolForComputation())
3333
}
3434
}

language-adaptors/rxjava-scala/src/main/scala/rx/lang/scala/concurrency/ThreadPoolForIOScheduler.scala

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,9 +26,9 @@ object ThreadPoolForIOScheduler {
2626
*
2727
* This can be used for asynchronously performing blocking IO.
2828
*
29-
* Do not perform computational work on this scheduler. Use [[rx.lang.scala.concurrency.Schedulers.threadPoolForComputation]] instead.
29+
* Do not perform computational work on this scheduler. Use [[rx.lang.scala.concurrency.ThreadPoolForComputationScheduler]] instead.
3030
*/
31-
def apply(): ThreadPoolForIOScheduler = {
31+
def apply(): ThreadPoolForIOScheduler = {
3232
new ThreadPoolForIOScheduler(rx.concurrency.Schedulers.threadPoolForIO())
3333
}
3434
}

0 commit comments

Comments
 (0)