Skip to content

Commit

Permalink
Fix comments in each interface
Browse files Browse the repository at this point in the history
  • Loading branch information
Matt Wysocki committed Sep 22, 2017
1 parent 8728454 commit e3dd21a
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
public interface AutoDisposingCompletableObserver extends CompletableObserver, Disposable {

/**
* @return {@link Observer} The delegate Observer that is used under the hood for introspection purposes.
* @return The delegate {@link CompletableObserver} that is used under the hood for introspection purposes.
*/
CompletableObserver delegateObserver();
}
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
public interface AutoDisposingMaybeObserver<T> extends MaybeObserver<T>, Disposable {

/**
* @return {@Link Observer} The delegate Observer that is used under the hood for introspection purposes.
* @return The delegate {@link MayberObserver} that is used under the hood for introspection purposes.
*/
MaybeObserver<? super T> delegateObserver();
}
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
public interface AutoDisposingObserver<T> extends Observer<T>, Disposable {

/**
* @return {@link Observer} The delegate Observer that is used under the hood for introspection purposes.
* @return The delegate {@link Observer} that is used under the hood for introspection purposes.
*/
Observer<? super T> delegateObserver();
}
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,7 @@
public interface AutoDisposingSingleObserver<T> extends SingleObserver<T>, Disposable {

/**
* @return {@link SingleObserver} The delegate SingleObserver that is used under the hood for introspection
* purposes.
* @return The delegate {@link SingleObserver} that is used under the hood for introspection purposes.
*/
SingleObserver<? super T> delegateObserver();
}
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
public interface AutoDisposingSubscriber<T> extends FlowableSubscriber<T>, Subscription, Disposable {

/**
* @return {@link Subscriber} The delegate Subscriber that is used under the hood for introspection purposes.
* @return The delegate {@link Subscriber} that is used under the hood for introspection purposes.
*/
Subscriber<? super T> delegateSubscriber();
}

0 comments on commit e3dd21a

Please sign in to comment.