Skip to content

Commit 6bc5a29

Browse files
authored
Update README.md
1 parent ec0b641 commit 6bc5a29

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
- A Kotlin Multiplatform library that provides a simple event bus implementation using
3232
`kotlinx.coroutines.channels.Channel`s.
3333
This is useful for UI applications where you want to send events to communicate between
34-
different parts / scope of your application (e.g. send results from a screen to another screen).
34+
different parts / scope of your application (e.g. send results from one screen to another).
3535

3636
- This bus is thread-safe to be used by multiple threads.
3737
It is safe to send events from multiple threads without any synchronization.
@@ -41,18 +41,18 @@
4141

4242
- The `Channel` is unbounded (`Channel.UNLIMITED` - default) or conflated `Channel.CONFLATED`.
4343
The `Flow` is cold and only one collector is allowed at a time.
44-
This make sure all events are consumed.
44+
This makes sure all events are consumed.
4545

4646
## Author: [Petrus Nguyễn Thái Học](https://github.com/hoc081098)
4747

48-
Liked some of my work? Buy me a coffee (or more likely a beer)
48+
Like some of my work? Could you buy me a coffee (or more likely a beer)?
4949

5050
<a href="https://www.buymeacoffee.com/hoc081098" target="_blank"><img src="https://cdn.buymeacoffee.com/buttons/v2/default-blue.png" alt="Buy Me A Coffee" height=64></a>
5151

5252
## Docs
5353

54-
- `0.x release` docs: https://hoc081098.github.io/kotlin-channel-event-bus/docs/0.x
55-
- Snapshot docs: https://hoc081098.github.io/kotlin-channel-event-bus/docs/latest/
54+
- `0.x release` docs: https://kotlin-multiplatform-foundation.github.io/kotlin-channel-event-bus/docs/0.x
55+
- Snapshot docs: https://kotlin-multiplatform-foundation.github.io/kotlin-channel-event-bus/docs/latest/
5656

5757
## Installation
5858

0 commit comments

Comments
 (0)