diff --git a/rxjava-core/src/main/java/rx/Observable.java b/rxjava-core/src/main/java/rx/Observable.java
index bf6c0b0e7d..ebf9362123 100644
--- a/rxjava-core/src/main/java/rx/Observable.java
+++ b/rxjava-core/src/main/java/rx/Observable.java
@@ -4389,7 +4389,7 @@ public Integer call(Integer t1, T t2) {
* @param source source Observable to compute the sum of
* @return an Observable that emits the sum of all the Integers emitted by
* the source Observable as its single item
- * @see RxJava Wiki: sum()
+ * @see RxJava Wiki: sumInteger()
* @see MSDN: Observable.Sum
*/
public static Observable sumInteger(Observable source) {
@@ -4410,7 +4410,7 @@ public static Observable sum(Observable source) {
* @param source source Observable to compute the sum of
* @return an Observable that emits the sum of all the Longs emitted by the
* source Observable as its single item
- * @see RxJava Wiki: sumLongs()
+ * @see RxJava Wiki: sumLong()
* @see MSDN: Observable.Sum
*/
public static Observable sumLong(Observable source) {
@@ -4426,7 +4426,7 @@ public static Observable sumLong(Observable source) {
* @param source source Observable to compute the sum of
* @return an Observable that emits the sum of all the Floats emitted by the
* source Observable as its single item
- * @see RxJava Wiki: sumFloats()
+ * @see RxJava Wiki: sumFloat()
* @see MSDN: Observable.Sum
*/
public static Observable sumFloat(Observable source) {
@@ -4442,7 +4442,7 @@ public static Observable sumFloat(Observable source) {
* @param source source Observable to compute the sum of
* @return an Observable that emits the sum of all the Doubles emitted by
* the source Observable as its single item
- * @see RxJava Wiki: sumDoubles()
+ * @see RxJava Wiki: sumDouble()
* @see MSDN: Observable.Sum
*/
public static Observable sumDouble(Observable source) {
@@ -4461,7 +4461,7 @@ public static Observable sumDouble(Observable source) {
* @return an Observable that emits the integer sum of the integer values
* corresponding to the items emitted by the source Observable
* transformed by the provided function
- * @see RxJava Wiki: sumInteger()
+ * @see RxJava Wiki: sumInteger()
* @see MSDN: Observable.Sum
*/
public Observable sumInteger(Func1 super T, Integer> valueExtractor) {
@@ -4480,7 +4480,7 @@ public Observable sumInteger(Func1 super T, Integer> valueExtractor)
* @return an Observable that emits the long sum of the integer values
* corresponding to the items emitted by the source Observable
* transformed by the provided function
- * @see RxJava Wiki: sumLong()
+ * @see RxJava Wiki: sumLong()
* @see MSDN: Observable.Sum
*/
public Observable sumLong(Func1 super T, Long> valueExtractor) {
@@ -4499,7 +4499,7 @@ public Observable sumLong(Func1 super T, Long> valueExtractor) {
* @return an Observable that emits the float sum of the integer values
* corresponding to the items emitted by the source Observable
* transformed by the provided function
- * @see RxJava Wiki: sumFloat()
+ * @see RxJava Wiki: sumFloat()
* @see MSDN: Observable.Sum
*/
public Observable sumFloat(Func1 super T, Float> valueExtractor) {
@@ -4518,7 +4518,7 @@ public Observable sumFloat(Func1 super T, Float> valueExtractor) {
* @return an Observable that emits the double sum of the integer values
* corresponding to the items emitted by the source Observable
* transformed by the provided function
- * @see RxJava Wiki: sumDouble()
+ * @see RxJava Wiki: sumDouble()
* @see MSDN: Observable.Sum
*/
public Observable sumDouble(Func1 super T, Double> valueExtractor) {
@@ -4535,7 +4535,7 @@ public Observable sumDouble(Func1 super T, Double> valueExtractor) {
* @return an Observable that emits the average of all the Integers emitted
* by the source Observable as its single item
* @throws IllegalArgumentException if the source Observable emits no items
- * @see RxJava Wiki: average()
+ * @see RxJava Wiki: averageInteger()
* @see MSDN: Observable.Average
*/
public static Observable averageInteger(Observable source) {
@@ -4556,7 +4556,7 @@ public static Observable average(Observable source) {
* @param source source Observable to compute the average of
* @return an Observable that emits the average of all the Longs emitted by
* the source Observable as its single item
- * @see RxJava Wiki: averageLongs()
+ * @see RxJava Wiki: averageLong()
* @see MSDN: Observable.Average
*/
public static Observable averageLong(Observable source) {
@@ -4572,7 +4572,7 @@ public static Observable averageLong(Observable source) {
* @param source source Observable to compute the average of
* @return an Observable that emits the average of all the Floats emitted by
* the source Observable as its single item
- * @see RxJava Wiki: averageFloats()
+ * @see RxJava Wiki: averageFloat()
* @see MSDN: Observable.Average
*/
public static Observable averageFloat(Observable source) {
@@ -4588,7 +4588,7 @@ public static Observable averageFloat(Observable source) {
* @param source source Observable to compute the average of
* @return an Observable that emits the average of all the Doubles emitted
* by the source Observable as its single item
- * @see RxJava Wiki: averageDoubles()
+ * @see RxJava Wiki: averageDouble()
* @see MSDN: Observable.Average
*/
public static Observable averageDouble(Observable source) {
@@ -4607,7 +4607,7 @@ public static Observable averageDouble(Observable source) {
* @return an Observable that emits the integer average of the complete
* sequence of items emitted by the source Observable when
* transformed into integers by the specified function
- * @see RxJava Wiki: averageInteger()
+ * @see RxJava Wiki: averageInteger()
* @see MSDN: Observable.Average
*/
public Observable averageInteger(Func1 super T, Integer> valueExtractor) {
@@ -4626,7 +4626,7 @@ public Observable averageInteger(Func1 super T, Integer> valueExtract
* @return an Observable that emits the long average of the complete
* sequence of items emitted by the source Observable when
* transformed into longs by the specified function
- * @see RxJava Wiki: averageLong()
+ * @see RxJava Wiki: averageLong()
* @see MSDN: Observable.Average
*/
public Observable averageLong(Func1 super T, Long> valueExtractor) {
@@ -4645,7 +4645,7 @@ public Observable averageLong(Func1 super T, Long> valueExtractor) {
* @return an Observable that emits the float average of the complete
* sequence of items emitted by the source Observable when
* transformed into floats by the specified function
- * @see RxJava Wiki: averageFloat()
+ * @see RxJava Wiki: averageFloat()
* @see MSDN: Observable.Average
*/
public Observable averageFloat(Func1 super T, Float> valueExtractor) {
@@ -4664,7 +4664,7 @@ public Observable averageFloat(Func1 super T, Float> valueExtractor) {
* @return an Observable that emits the double average of the complete
* sequence of items emitted by the source Observable when
* transformed into doubles by the specified function
- * @see RxJava Wiki: averageDouble()
+ * @see RxJava Wiki: averageDouble()
* @see MSDN: Observable.Average
*/
public Observable averageDouble(Func1 super T, Double> valueExtractor) {