Skip to content

Commit

Permalink
docs: fix broken docs link
Browse files Browse the repository at this point in the history
  • Loading branch information
hoc081098 authored Jun 16, 2024
1 parent 6852efa commit 0915134
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/rxdart/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -216,7 +216,7 @@ Additional information about the following situations can be found by reading th
| Cold Observables | Multiple subscribers can listen to the same cold Observable, and each subscription will receive a unique Stream of data | Single subscriber only |
| Hot Observables | Yes | Yes, known as Broadcast Streams |
| Is {Publish, Behavior, Replay}Subject hot? | Yes | Yes |
| Single/Maybe/Completable ? | Yes | Yes, uses [rxdart_ext Single](https://pub.dev/documentation/rxdart_ext/latest/single/Single-class.html) (`Completable = Single<void>, Maybe<T> = Single<T?>`) |
| Single/Maybe/Completable ? | Yes | Yes, uses [rxdart_ext Single](https://pub.dev/documentation/rxdart_ext/latest/rxdart_ext/Single-class.html) (`Completable == Single<void>` and `Maybe<T> == Single<T?>`) |
| Support back pressure| Yes | Yes |
| Can emit null? | Yes, except RxJava | Yes |
| Sync by default | Yes | No |
Expand Down

0 comments on commit 0915134

Please sign in to comment.