Skip to content

Commit e44bd8c

Browse files
Javadoc Cleanup
1 parent 84696e0 commit e44bd8c

File tree

4 files changed

+4
-8
lines changed

4 files changed

+4
-8
lines changed

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

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -781,13 +781,11 @@ public static <T> Observable<T> switchDo(Observable<Observable<T>> sequenceOfSeq
781781
}
782782

783783
/**
784-
* Given an Observable that emits Observables, creates a single Observable that
784+
* On an Observable that emits Observables, creates a single Observable that
785785
* emits the items emitted by the most recently published of those Observables.
786786
* <p>
787787
* <img width="640" src="https://github.com/Netflix/RxJava/wiki/images/rx-operators/switchDo.png">
788788
*
789-
* @param sequenceOfSequences
790-
* the source Observable that emits Observables
791789
* @return an Observable that emits only the items emitted by the most recently published
792790
* Observable
793791
* @throws ClassCastException
@@ -1133,7 +1131,7 @@ public Observable<List<T>> buffer(int count) {
11331131
* The maximum size of each buffer before it should be emitted.
11341132
* @param skip
11351133
* How many produced values need to be skipped before starting a new buffer. Note that when "skip" and
1136-
* "count" are equals that this is the same operation as {@link Observable#buffer(Observable, int)}.
1134+
* "count" are equals that this is the same operation as {@link Observable#buffer(int)}.
11371135
* @return
11381136
* An {@link Observable} which produces buffers every "skipped" values containing at most
11391137
* "count" produced values.

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
/**
2121
* Subscription returns from {@link Observable#subscribe(Observer)} to allow unsubscribing.
2222
* <p>
23-
* See utilities in {@link Subscriptions} and implementations in the {@link rx.subscriptions} package.
23+
* See utilities in {@link Subscriptions} and implementations in the {@code rx.subscriptions} package.
2424
* <p>
2525
* This interface is the RxJava equivalent of {@code IDisposable} in Microsoft's Rx implementation.
2626
*/

rxjava-core/src/main/java/rx/observables/GroupedObservable.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
* An {@link Observable} that has been grouped by a key whose value can be obtained using
2525
* {@link #getKey()} <p>
2626
*
27-
* @see Observable#groupBy(Observable, Func1)
27+
* @see Observable#groupBy(Func1)
2828
*
2929
* @param <K> the type of the key
3030
* @param <T> the type of the elements in the group

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

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,8 +43,6 @@ public class OperationToIterator {
4343
/**
4444
* Returns an iterator that iterates all values of the observable.
4545
*
46-
* @param that
47-
* an observable sequence to get an iterator for.
4846
* @param <T>
4947
* the type of source.
5048
* @return the iterator that could be used to iterate over the elements of the observable.

0 commit comments

Comments
 (0)