Skip to content

Commit 1e147fb

Browse files
vanniktechakarnokd
authored andcommitted
1.x: SyncOnSubscribe fix typo and java doc (#4248)
1 parent 0bdff66 commit 1e147fb

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/main/java/rx/observables/SyncOnSubscribe.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
import rx.plugins.RxJavaHooks;
2828

2929
/**
30-
* A utility class to create {@code OnSubscribe<T>} functions that respond correctly to back
30+
* A utility class to create {@code OnSubscribe<T>} functions that responds correctly to back
3131
* pressure requests from subscribers. This is an improvement over
3232
* {@link rx.Observable#create(OnSubscribe) Observable.create(OnSubscribe)} which does not provide
3333
* any means of managing back pressure requests out-of-the-box.
@@ -271,7 +271,7 @@ public void call(Void t) {
271271

272272
/**
273273
* An implementation of SyncOnSubscribe that delegates
274-
* {@link SyncOnSubscribe#next(Object, Subscriber)}, {@link SyncOnSubscribe#generateState()},
274+
* {@link SyncOnSubscribe#next(Object, Observer)}, {@link SyncOnSubscribe#generateState()},
275275
* and {@link SyncOnSubscribe#onUnsubscribe(Object)} to provided functions/closures.
276276
*
277277
* @param <S>

0 commit comments

Comments
 (0)