Skip to content

Commit 4e557c3

Browse files
committed
Fixed Javadoc
Release 1.0.0
1 parent 709a150 commit 4e557c3

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

library/src/main/java/pocketbus/Bus.java

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -290,7 +290,7 @@ private <T> void checkAndPost(@NonNull Class subscriptionClazz, @NonNull T event
290290
}
291291

292292
/**
293-
* Similar to {@see post} but the event is saved and delivered to subscriptions of matching types when they are registered.
293+
* Similar to {@code post} but the event is saved and delivered to subscriptions of matching types when they are registered.
294294
* Only the last event of each type is saved and delivered.
295295
*
296296
* @param event the event to post and save to be delivered on registration
@@ -486,7 +486,7 @@ public SubscriptionStore(@NonNull T event, @Nullable Subscription subscription,
486486
}
487487

488488
/**
489-
* Builds an instance of the {@link Bus)
489+
* Builds an instance of the {@link Bus}
490490
*/
491491
public static class Builder {
492492
private static final int DEFAULT_BACKGROUND_THREAD_POOL_SIZE = 2;
@@ -502,7 +502,7 @@ public static class Builder {
502502
protected int eventCleanupCount = DEFAULT_EVENT_CLEANUP_COUNT;
503503

504504
/**
505-
* Set the RxScheduler to use for {@link ThreadMode}.MAIN
505+
* Set the RxScheduler to use for ThreadMode.MAIN
506506
* <p>
507507
* Default AndroidSchedulers.mainThread()
508508
*
@@ -516,7 +516,7 @@ public Builder setMainScheduler(@NonNull Scheduler scheduler) {
516516
}
517517

518518
/**
519-
* Set the RxScheduler to use for {@link ThreadMode}.CURRENT
519+
* Set the RxScheduler to use for ThreadMode.CURRENT
520520
* <p>
521521
* Default Schedulers.trampoline()
522522
*
@@ -530,7 +530,7 @@ public Builder setCurrentScheduler(@NonNull Scheduler scheduler) {
530530
}
531531

532532
/**
533-
* Set the RxScheduler to use for {@link ThreadMode}.BACKGROUND
533+
* Set the RxScheduler to use for ThreadMode.BACKGROUND
534534
* <p>
535535
* Default Schedulers.from(Executors.newFixedThreadPool(backgroundThreadPoolSize))
536536
*
@@ -544,7 +544,7 @@ public Builder setBackgroundScheduler(@NonNull Scheduler scheduler) {
544544
}
545545

546546
/**
547-
* Set the number of threads for {@link ThreadMode}.BACKGROUND
547+
* Set the number of threads for ThreadMode.BACKGROUND
548548
* Only used if the default BackgroundScheduler is used.
549549
* <p>
550550
* Default is {@literal 2}

0 commit comments

Comments
 (0)