diff --git a/src/main/java/io/reactivex/subjects/SingleSubject.java b/src/main/java/io/reactivex/subjects/SingleSubject.java index f904662004..ff07b75845 100644 --- a/src/main/java/io/reactivex/subjects/SingleSubject.java +++ b/src/main/java/io/reactivex/subjects/SingleSubject.java @@ -34,8 +34,8 @@ * as parameters to {@link #onSuccess(Object)} and {@link #onError(Throwable)}. Such calls will result in a * {@link NullPointerException} being thrown and the subject's state is not changed. *
- * Since a {@code SingleSubject} is a {@link io.reactivex.Maybe}, calling {@code onSuccess}, {@code onError} - * or {@code onComplete} will move this {@code SingleSubject} into its terminal state atomically. + * Since a {@code SingleSubject} is a {@link io.reactivex.Single}, calling {@code onSuccess} or {@code onError} + * will move this {@code SingleSubject} into its terminal state atomically. *
* All methods are thread safe. Calling {@link #onSuccess(Object)} multiple * times has no effect. Calling {@link #onError(Throwable)} multiple times relays the {@code Throwable} to @@ -55,8 +55,8 @@ *