Skip to content

Commit ad1fbc2

Browse files
committed
eliminate javadoc compiler warnings, add "since" stub
1 parent 97747fb commit ad1fbc2

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

src/main/java/rx/Observable.java

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -110,12 +110,13 @@ public interface Operator<R, T> extends Func1<Subscriber<? super R>, Subscriber<
110110
}
111111

112112
/**
113-
* Passes all emitted values from {@code this} Observable to the provided {@link ConversionFunc} to be
114-
* collected and returned as a single value. Note that it is legal for a {@link ConversionFunc} to
115-
* return an Observable (enabling chaining).
113+
* Passes all emitted values from this Observable to the provided conversion function to be collected and
114+
* returned as a single value. Note that it is legal for a conversion function to return an Observable
115+
* (enabling chaining).
116116
*
117117
* @param conversion a function that converts from this {@code Observable<T>} to an {@code R}
118-
* @return an instance of R created by the provided Conversion
118+
* @return an instance of R created by the provided conversion function
119+
* @since (if this graduates from Experimental/Beta to supported, replace this parenthetical with the release number)
119120
*/
120121
@Experimental
121122
public <R> R x(Func1<? super OnSubscribe<T>, ? extends R> conversion) {

0 commit comments

Comments
 (0)