Skip to content

Commit 611bb3f

Browse files
committed
Fix minor JavaDocs syntax errors
1 parent 2fafcb0 commit 611bb3f

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/main/java/io/reactivex/rxjava3/core/Flowable.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11960,7 +11960,7 @@ public final <U> Flowable<U> ofType(@NonNull Class<U> clazz) {
1196011960
*
1196111961
* @return the new {@code Flowable} instance
1196211962
* @see <a href="http://reactivex.io/documentation/operators/backpressure.html">ReactiveX operators documentation: backpressure operators</a>
11963-
* #see {@link #onBackpressureBuffer(boolean)}
11963+
* @see #onBackpressureBuffer(boolean)
1196411964
*/
1196511965
@CheckReturnValue
1196611966
@BackpressureSupport(BackpressureKind.UNBOUNDED_IN)

src/main/java/io/reactivex/rxjava3/core/Maybe.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2659,7 +2659,7 @@ public final void blockingSubscribe(@NonNull Consumer<? super T> onSuccess, @Non
26592659
* </dl>
26602660
* @param onSuccess the {@link Consumer} to call if the current {@code Maybe} succeeds
26612661
* @param onError the {@code Consumer} to call if the current {@code Maybe} signals an error
2662-
* @param onComplete the {@linnk Action} to call if the current {@code Maybe} completes without a value
2662+
* @param onComplete the {@link Action} to call if the current {@code Maybe} completes without a value
26632663
* @throws NullPointerException if {@code onSuccess}, {@code onError} or {@code onComplete} is {@code null}
26642664
* @since 3.0.0
26652665
*/

0 commit comments

Comments
 (0)