Skip to content

Commit f01bc15

Browse files
committed
Fix wrong class name in SingleInterop.fromFuture Javadocs
1 parent f02a5f2 commit f01bc15

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/hu/akarnokd/rxjava3/jdk8interop/SingleInterop.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ public static <T> SingleConverter<T, Stream<T>> toStream() {
6868
* NoSuchElementException if it signals null.
6969
* @param <T> the value type
7070
* @param future the source CompletionStage instance
71-
* @return the new Completable instance
71+
* @return the new Single instance
7272
*/
7373
public static <T> Single<T> fromFuture(CompletionStage<T> future) {
7474
SingleSubject<T> cs = SingleSubject.create();

0 commit comments

Comments
 (0)