Skip to content

Commit 2ebe404

Browse files
committed
Fixed missing links to rx/reactive classes
1 parent 57d7a4f commit 2ebe404

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

kotlinx-coroutines-reactive/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ Coroutine builders:
66

77
| **Name** | **Result** | **Scope** | **Description**
88
| --------------- | ----------------------------- | ---------------- | ---------------
9-
| [publish] | [Publisher][org.reactivestreams.Publisher] | [ProducerScope] | Cold reactive publisher that starts coroutine on subscribe
9+
| [publish] | `Publisher` | [ProducerScope] | Cold reactive publisher that starts coroutine on subscribe
1010

1111
Suspending extension functions and suspending iteration:
1212

kotlinx-coroutines-rx1/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@ Coroutine builders:
66

77
| **Name** | **Result** | **Scope** | **Description**
88
| --------------- | ----------------------------- | ---------------- | ---------------
9-
| [rxCompletable] | [Completable][rx.Completable] | [CoroutineScope] | Cold completable that starts coroutine on subscribe
10-
| [rxSingle] | [Single][rx.Single] | [CoroutineScope] | Cold single that starts coroutine on subscribe
11-
| [rxObservable] | [Observable][rx.Observable] | [ProducerScope] | Cold observable that starts coroutine on subscribe
9+
| [rxCompletable] | `Completable` | [CoroutineScope] | Cold completable that starts coroutine on subscribe
10+
| [rxSingle] | `Single` | [CoroutineScope] | Cold single that starts coroutine on subscribe
11+
| [rxObservable] | `Observable` | [ProducerScope] | Cold observable that starts coroutine on subscribe
1212

1313
Suspending extension functions and suspending iteration:
1414

kotlinx-coroutines-rx2/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@ Coroutine builders:
66

77
| **Name** | **Result** | **Scope** | **Description**
88
| --------------- | --------------------------------------- | ---------------- | ---------------
9-
| [rxCompletable] | [Completable][io.reactivex.Completable] | [CoroutineScope] | Cold completable that starts coroutine on subscribe
10-
| [rxSingle] | [Single][io.reactivex.Single] | [CoroutineScope] | Cold single that starts coroutine on subscribe
11-
| [rxObservable] | [Observable][io.reactivex.Observable] | [ProducerScope] | Cold observable that starts coroutine on subscribe
9+
| [rxCompletable] | `Completable` | [CoroutineScope] | Cold completable that starts coroutine on subscribe
10+
| [rxSingle] | `Single` | [CoroutineScope] | Cold single that starts coroutine on subscribe
11+
| [rxObservable] | `Observable` | [ProducerScope] | Cold observable that starts coroutine on subscribe
1212

1313
Suspending extension functions and suspending iteration:
1414

0 commit comments

Comments
 (0)