Skip to content

Commit cf4e55a

Browse files
committed
Update README.md
1 parent 14e28be commit cf4e55a

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ More about jitpack can be found here: https://jitpack.io/#MFlisar/RXBus/
2727

2828
##Usage (simple)
2929

30-
Just use the `RXBus` class and subscribe to a special event, that's it. Just like following:
30+
Just use the `RXBus` class and subscribe to a special event, that's it. Or use the `RXBusBuilder` for more flexible usage. Just like following:
3131

3232
* Variant 1:
3333

@@ -58,7 +58,7 @@ Just use the `RXBus` class and subscribe to a special event, that's it. Just lik
5858
You can use this library to subscribe to events and only get them when your activity is resumed, so that you can be sure views are available, for example. Just like following:
5959

6060
Subscription queuedSubscription = new RXBusBuilder<>(String.class)
61-
// this enables the queuing mode!
61+
// this enables the queuing mode!
6262
.queue(observableIsResumed, this)
6363
.withOnNext(new Action1<String>() {
6464
@Override

0 commit comments

Comments
 (0)