@@ -9289,7 +9289,7 @@ public final Maybe<T> elementAt(long index) {
9289
9289
}
9290
9290
9291
9291
/**
9292
- * Returns a Flowable that emits the item found at a specified index in a sequence of emissions from
9292
+ * Returns a Single that emits the item found at a specified index in a sequence of emissions from
9293
9293
* this Flowable, or a default item if that index is out of range.
9294
9294
* <p>
9295
9295
* <img width="640" height="310" src="https://raw.github.com/wiki/ReactiveX/RxJava/images/rx-operators/elementAtOrDefault.png" alt="">
@@ -9305,7 +9305,7 @@ public final Maybe<T> elementAt(long index) {
9305
9305
* the zero-based index of the item to retrieve
9306
9306
* @param defaultItem
9307
9307
* the default item
9308
- * @return a Flowable that emits the item at the specified position in the sequence emitted by the source
9308
+ * @return a Single that emits the item at the specified position in the sequence emitted by the source
9309
9309
* Publisher, or the default item if that index is outside the bounds of the source sequence
9310
9310
* @throws IndexOutOfBoundsException
9311
9311
* if {@code index} is less than 0
@@ -9323,7 +9323,7 @@ public final Single<T> elementAt(long index, T defaultItem) {
9323
9323
}
9324
9324
9325
9325
/**
9326
- * Returns a Flowable that emits the item found at a specified index in a sequence of emissions from
9326
+ * Returns a Single that emits the item found at a specified index in a sequence of emissions from
9327
9327
* this Flowable or signals a {@link NoSuchElementException} if this Flowable has fewer elements than index.
9328
9328
* <p>
9329
9329
* <img width="640" height="310" src="https://raw.github.com/wiki/ReactiveX/RxJava/images/rx-operators/elementAtOrDefault.png" alt="">
@@ -9337,7 +9337,7 @@ public final Single<T> elementAt(long index, T defaultItem) {
9337
9337
*
9338
9338
* @param index
9339
9339
* the zero-based index of the item to retrieve
9340
- * @return a Flowable that emits the item at the specified position in the sequence emitted by the source
9340
+ * @return a Single that emits the item at the specified position in the sequence emitted by the source
9341
9341
* Publisher, or the default item if that index is outside the bounds of the source sequence
9342
9342
* @throws IndexOutOfBoundsException
9343
9343
* if {@code index} is less than 0
0 commit comments