Skip to content

Commit bf5df77

Browse files
author
jmhofer
committed
Fixed everything but empty return tags.
1 parent 7108d09 commit bf5df77

File tree

5 files changed

+8
-8
lines changed

5 files changed

+8
-8
lines changed

rxjava-core/src/main/java/rx/Observable.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -562,8 +562,8 @@ public void onNext(T args) {
562562
* <p>
563563
* This is similar to {@link #subscribe(Observer)} but blocks. Because it blocks it does not need the {@link Observer#onCompleted()} or {@link Observer#onError(Exception)} methods.
564564
*
565-
* @param onNext
566-
* {@link Action1}
565+
* @param o
566+
* onNext {@link Action1 action}
567567
* @throws RuntimeException
568568
* if error occurs
569569
*/

rxjava-core/src/main/java/rx/operators/OperationMaterialize.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ public final class OperationMaterialize {
4040
/**
4141
* Materializes the implicit notifications of an observable sequence as explicit notification values.
4242
*
43-
* @param source
43+
* @param sequence
4444
* An observable sequence of elements to project.
4545
* @return An observable sequence whose elements are the result of materializing the notifications of the given sequence.
4646
* @see <a href="http://msdn.microsoft.com/en-us/library/hh229453(v=VS.103).aspx">Observable.Materialize(TSource) Method </a>

rxjava-core/src/main/java/rx/operators/OperationMerge.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ public final class OperationMerge {
4444
/**
4545
* Flattens the observable sequences from the list of Observables into one observable sequence without any transformation.
4646
*
47-
* @param source
47+
* @param o
4848
* An observable sequence of elements to project.
4949
* @return An observable sequence whose elements are the result of flattening the output from the list of Observables.
5050
* @see <a href="http://msdn.microsoft.com/en-us/library/hh229099(v=vs.103).aspx">Observable.Merge(TSource) Method (IObservable(TSource)[])</a>

rxjava-core/src/main/java/rx/operators/OperationMergeDelayError.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ public final class OperationMergeDelayError {
5151
* onError or onComplete so as to allow all successful
5252
* onNext calls to be received.
5353
*
54-
* @param source
54+
* @param sequences
5555
* An observable sequence of elements to project.
5656
* @return An observable sequence whose elements are the result of flattening the output from the list of Observables.
5757
* @see <a href="http://msdn.microsoft.com/en-us/library/hh229099(v=vs.103).aspx">Observable.Merge(TSource) Method (IObservable(TSource)[])</a>

rxjava-core/src/main/java/rx/plugins/RxJavaObservableExecutionHook.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -44,8 +44,8 @@ public abstract class RxJavaObservableExecutionHook {
4444
* @param observableInstance
4545
* The executing {@link Observable} instance.
4646
* @param onSubscribe
47-
* original {@link Func1}<{@link Observer}{@code<T>}, {@link Subscription}> to be executed
48-
* @return {@link Func1}<{@link Observer}{@code<T>}, {@link Subscription}> function that can be modified, decorated, replaced or just returned as a pass-thru.
47+
* original {@link Func1}<{@link Observer}{@code <T>}, {@link Subscription}> to be executed
48+
* @return {@link Func1}<{@link Observer}{@code <T>}, {@link Subscription}> function that can be modified, decorated, replaced or just returned as a pass-thru.
4949
*/
5050
public <T> Func1<Observer<T>, Subscription> onSubscribeStart(Observable<T> observableInstance, Func1<Observer<T>, Subscription> onSubscribe) {
5151
// pass-thru by default
@@ -72,7 +72,7 @@ public <T> Subscription onSubscribeReturn(Observable<T> observableInstance, Subs
7272
* Invoked after failed execution of {@link Observable#subscribe(Observer)} with thrown Exception.
7373
* <p>
7474
* This is NOT errors emitted via {@link Observer#onError(Exception)} but exceptions thrown when attempting
75-
* to subscribe to a {@link Func1}<{@link Observer}{@code<T>}, {@link Subscription}>.
75+
* to subscribe to a {@link Func1}<{@link Observer}{@code <T>}, {@link Subscription}>.
7676
*
7777
* @param observableInstance
7878
* The executing {@link Observable} instance.

0 commit comments

Comments
 (0)