diff --git a/src/main/java/io/reactivex/MaybeObserver.java b/src/main/java/io/reactivex/MaybeObserver.java index 7cc195bac8..06f50ab4c8 100644 --- a/src/main/java/io/reactivex/MaybeObserver.java +++ b/src/main/java/io/reactivex/MaybeObserver.java @@ -45,10 +45,10 @@ public interface MaybeObserver { *

* The {@link Maybe} will not call this method if it calls {@link #onError}. * - * @param value + * @param t * the item emitted by the Maybe */ - void onSuccess(T value); + void onSuccess(T t); /** * Notifies the MaybeObserver that the {@link Maybe} has experienced an error condition. diff --git a/src/main/java/io/reactivex/Observer.java b/src/main/java/io/reactivex/Observer.java index 9b0eed5ca6..e27501b0de 100644 --- a/src/main/java/io/reactivex/Observer.java +++ b/src/main/java/io/reactivex/Observer.java @@ -50,10 +50,10 @@ public interface Observer { * The {@code Observable} will not call this method again after it calls either {@link #onComplete} or * {@link #onError}. * - * @param value + * @param t * the item emitted by the Observable */ - void onNext(T value); + void onNext(T t); /** * Notifies the Observer that the {@link Observable} has experienced an error condition. diff --git a/src/main/java/io/reactivex/SingleObserver.java b/src/main/java/io/reactivex/SingleObserver.java index 150d59e7a1..068e0d7f1e 100644 --- a/src/main/java/io/reactivex/SingleObserver.java +++ b/src/main/java/io/reactivex/SingleObserver.java @@ -47,10 +47,10 @@ public interface SingleObserver { *

* The {@link Single} will not call this method if it calls {@link #onError}. * - * @param value + * @param t * the item emitted by the Single */ - void onSuccess(T value); + void onSuccess(T t); /** * Notifies the SingleObserver that the {@link Single} has experienced an error condition.