Skip to content

Commit 93f7e8e

Browse files
authored
typo fixed
1 parent ed5ed49 commit 93f7e8e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

reactive/coroutines-guide-reactive.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -383,7 +383,7 @@ one. Only after consumer processes the first item, producer sends the second one
383383
RxJava has a concept of [Subject](https://github.com/ReactiveX/RxJava/wiki/Subject) which is an object that
384384
effectively broadcasts elements to all its subscribers. The matching concept in coroutines world is called a
385385
[BroadcastChannel]. There is a variety of subjects in Rx with
386-
[BehaviorSubject](http://reactivex.io/RxJava/2.x/javadoc/io/reactivex/subjects/BehaviorSubject.html) being the
386+
[BehaviorSubject](http://reactivex.io/RxJava/2.x/javadoc/io/reactivex/subjects/BehaviorSubject.html) being
387387
the one used to manage state:
388388

389389
<!--- INCLUDE

0 commit comments

Comments
 (0)