From 3000d580226049921f6c99781d71d95e42016d0d Mon Sep 17 00:00:00 2001 From: Kyriakos Tharrouniatis Date: Mon, 17 Feb 2020 13:06:30 +0000 Subject: [PATCH] Make kdoc more clear --- .../main/kotlin/net/corda/node/internal/FlowSafeSubject.kt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/node/src/main/kotlin/net/corda/node/internal/FlowSafeSubject.kt b/node/src/main/kotlin/net/corda/node/internal/FlowSafeSubject.kt index ee406dbaf6..7f1756c377 100644 --- a/node/src/main/kotlin/net/corda/node/internal/FlowSafeSubject.kt +++ b/node/src/main/kotlin/net/corda/node/internal/FlowSafeSubject.kt @@ -9,8 +9,8 @@ import rx.subjects.Subject /** * [FlowSafeSubject] is used to unwrap an [Observer] from a [SafeSubscriber], re-wrap it with a [FlowSafeSubscriber] - * and then subscribe it to its underlying [Subject]. It is only used to provide therefore, its underlying [Subject] with - * non unsubscribing [rx.Observer]s. + * and then subscribe it to its underlying [Subject]. It is only used therefore, to provide its underlying [Subject] with + * subscribing of non unsubscribing [rx.Observer]s. * * Upon [rx.Observable.subscribe] it will wrap everything that is a non [SafeSubscriber] with a [FlowSafeSubscriber] the same way * [rx.subjects.PublishSubject] wraps everything that is a non [SafeSubscriber] with a [SafeSubscriber].