Skip to content

Commit

Permalink
Adding alt attributes to img tags in javadocs to avoid occasional bui…
Browse files Browse the repository at this point in the history
…ld issues
  • Loading branch information
DavidMGross committed Jul 13, 2014
1 parent fab02b3 commit 5e7792d
Showing 1 changed file with 20 additions and 20 deletions.
40 changes: 20 additions & 20 deletions src/main/java/rx/observables/MathObservable.java
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ public static <T> MathObservable<T> from(Observable<T> o) {
/**
* Returns an Observable that emits the average of the Doubles emitted by the source Observable.
* <p>
* <img width="640" src="https://raw.github.com/wiki/Netflix/RxJava/images/rx-operators/average.png">
* <img width="640" src="https://raw.github.com/wiki/Netflix/RxJava/images/rx-operators/average.png" alt="">
*
* @param source
* source Observable to compute the average of
Expand All @@ -58,7 +58,7 @@ public final static Observable<Double> averageDouble(Observable<Double> source)
/**
* Returns an Observable that emits the average of the Floats emitted by the source Observable.
* <p>
* <img width="640" src="https://raw.github.com/wiki/Netflix/RxJava/images/rx-operators/average.png">
* <img width="640" src="https://raw.github.com/wiki/Netflix/RxJava/images/rx-operators/average.png" alt="">
*
* @param source
* source Observable to compute the average of
Expand All @@ -74,7 +74,7 @@ public final static Observable<Float> averageFloat(Observable<Float> source) {
/**
* Returns an Observable that emits the average of the Integers emitted by the source Observable.
* <p>
* <img width="640" src="https://raw.github.com/wiki/Netflix/RxJava/images/rx-operators/average.png">
* <img width="640" src="https://raw.github.com/wiki/Netflix/RxJava/images/rx-operators/average.png" alt="">
*
* @param source
* source Observable to compute the average of
Expand All @@ -92,7 +92,7 @@ public final static Observable<Integer> averageInteger(Observable<Integer> sourc
/**
* Returns an Observable that emits the average of the Longs emitted by the source Observable.
* <p>
* <img width="640" src="https://raw.github.com/wiki/Netflix/RxJava/images/rx-operators/average.png">
* <img width="640" src="https://raw.github.com/wiki/Netflix/RxJava/images/rx-operators/average.png" alt="">
*
* @param source
* source Observable to compute the average of
Expand All @@ -110,7 +110,7 @@ public final static Observable<Long> averageLong(Observable<Long> source) {
* numeric value. If there is more than one item with the same maximum value, it emits the last-emitted of
* these.
* <p>
* <img width="640" src="https://raw.github.com/wiki/Netflix/RxJava/images/rx-operators/max.png">
* <img width="640" src="https://raw.github.com/wiki/Netflix/RxJava/images/rx-operators/max.png" alt="">
*
* @param source
* an Observable to scan for the maximum emitted item
Expand All @@ -128,7 +128,7 @@ public final static <T extends Comparable<? super T>> Observable<T> max(Observab
* Returns an Observable that emits the single numerically minimum item emitted by the source Observable.
* If there is more than one such item, it returns the last-emitted one.
* <p>
* <img width="640" src="https://raw.github.com/wiki/Netflix/RxJava/images/rx-operators/min.png">
* <img width="640" src="https://raw.github.com/wiki/Netflix/RxJava/images/rx-operators/min.png" alt="">
*
* @param source
* an Observable to determine the minimum item of
Expand All @@ -144,7 +144,7 @@ public final static <T extends Comparable<? super T>> Observable<T> min(Observab
/**
* Returns an Observable that emits the sum of all the Doubles emitted by the source Observable.
* <p>
* <img width="640" src="https://raw.github.com/wiki/Netflix/RxJava/images/rx-operators/sum.png">
* <img width="640" src="https://raw.github.com/wiki/Netflix/RxJava/images/rx-operators/sum.png" alt="">
*
* @param source
* the source Observable to compute the sum of
Expand All @@ -160,7 +160,7 @@ public final static Observable<Double> sumDouble(Observable<Double> source) {
/**
* Returns an Observable that emits the sum of all the Floats emitted by the source Observable.
* <p>
* <img width="640" src="https://raw.github.com/wiki/Netflix/RxJava/images/rx-operators/sum.png">
* <img width="640" src="https://raw.github.com/wiki/Netflix/RxJava/images/rx-operators/sum.png" alt="">
*
* @param source
* the source Observable to compute the sum of
Expand All @@ -176,7 +176,7 @@ public final static Observable<Float> sumFloat(Observable<Float> source) {
/**
* Returns an Observable that emits the sum of all the Integers emitted by the source Observable.
* <p>
* <img width="640" src="https://raw.github.com/wiki/Netflix/RxJava/images/rx-operators/sum.png">
* <img width="640" src="https://raw.github.com/wiki/Netflix/RxJava/images/rx-operators/sum.png" alt="">
*
* @param source
* source Observable to compute the sum of
Expand All @@ -192,7 +192,7 @@ public final static Observable<Integer> sumInteger(Observable<Integer> source) {
/**
* Returns an Observable that emits the sum of all the Longs emitted by the source Observable.
* <p>
* <img width="640" src="https://raw.github.com/wiki/Netflix/RxJava/images/rx-operators/sum.png">
* <img width="640" src="https://raw.github.com/wiki/Netflix/RxJava/images/rx-operators/sum.png" alt="">
*
* @param source
* source Observable to compute the sum of
Expand All @@ -209,7 +209,7 @@ public final static Observable<Long> sumLong(Observable<Long> source) {
* Returns an Observable that transforms items emitted by the source Observable into Doubles by using a
* function you provide and then emits the Double average of the complete sequence of transformed values.
* <p>
* <img width="640" src="https://raw.github.com/wiki/Netflix/RxJava/images/rx-operators/average.f.png">
* <img width="640" src="https://raw.github.com/wiki/Netflix/RxJava/images/rx-operators/average.f.png" alt="">
*
* @param valueExtractor
* the function to transform an item emitted by the source Observable into a Double
Expand All @@ -226,7 +226,7 @@ public final Observable<Double> averageDouble(Func1<? super T, Double> valueExtr
* Returns an Observable that transforms items emitted by the source Observable into Floats by using a
* function you provide and then emits the Float average of the complete sequence of transformed values.
* <p>
* <img width="640" src="https://raw.github.com/wiki/Netflix/RxJava/images/rx-operators/average.f.png">
* <img width="640" src="https://raw.github.com/wiki/Netflix/RxJava/images/rx-operators/average.f.png" alt="">
*
* @param valueExtractor
* the function to transform an item emitted by the source Observable into a Float
Expand All @@ -243,7 +243,7 @@ public final Observable<Float> averageFloat(Func1<? super T, Float> valueExtract
* Returns an Observable that transforms items emitted by the source Observable into Integers by using a
* function you provide and then emits the Integer average of the complete sequence of transformed values.
* <p>
* <img width="640" src="https://raw.github.com/wiki/Netflix/RxJava/images/rx-operators/average.f.png">
* <img width="640" src="https://raw.github.com/wiki/Netflix/RxJava/images/rx-operators/average.f.png" alt="">
*
* @param valueExtractor
* the function to transform an item emitted by the source Observable into an Integer
Expand All @@ -260,7 +260,7 @@ public final Observable<Integer> averageInteger(Func1<? super T, Integer> valueE
* Returns an Observable that transforms items emitted by the source Observable into Longs by using a
* function you provide and then emits the Long average of the complete sequence of transformed values.
* <p>
* <img width="640" src="https://raw.github.com/wiki/Netflix/RxJava/images/rx-operators/average.f.png">
* <img width="640" src="https://raw.github.com/wiki/Netflix/RxJava/images/rx-operators/average.f.png" alt="">
*
* @param valueExtractor
* the function to transform an item emitted by the source Observable into a Long
Expand All @@ -278,7 +278,7 @@ public final Observable<Long> averageLong(Func1<? super T, Long> valueExtractor)
* specified comparator. If there is more than one item with the same maximum value, it emits the
* last-emitted of these.
* <p>
* <img width="640" src="https://raw.github.com/wiki/Netflix/RxJava/images/rx-operators/max.png">
* <img width="640" src="https://raw.github.com/wiki/Netflix/RxJava/images/rx-operators/max.png" alt="">
*
* @param comparator
* the comparer used to compare items
Expand All @@ -297,7 +297,7 @@ public final Observable<T> max(Comparator<? super T> comparator) {
* Returns an Observable that emits the minimum item emitted by the source Observable, according to a
* specified comparator. If there is more than one such item, it returns the last-emitted one.
* <p>
* <img width="640" src="https://raw.github.com/wiki/Netflix/RxJava/images/rx-operators/min.png">
* <img width="640" src="https://raw.github.com/wiki/Netflix/RxJava/images/rx-operators/min.png" alt="">
*
* @param comparator
* the comparer used to compare elements
Expand All @@ -316,7 +316,7 @@ public final Observable<T> min(Comparator<? super T> comparator) {
* Returns an Observable that extracts a Double from each of the items emitted by the source Observable via
* a function you specify, and then emits the sum of these Doubles.
* <p>
* <img width="640" src="https://raw.github.com/wiki/Netflix/RxJava/images/rx-operators/sum.f.png">
* <img width="640" src="https://raw.github.com/wiki/Netflix/RxJava/images/rx-operators/sum.f.png" alt="">
*
* @param valueExtractor
* the function to extract a Double from each item emitted by the source Observable
Expand All @@ -333,7 +333,7 @@ public final Observable<Double> sumDouble(Func1<? super T, Double> valueExtracto
* Returns an Observable that extracts a Float from each of the items emitted by the source Observable via
* a function you specify, and then emits the sum of these Floats.
* <p>
* <img width="640" src="https://raw.github.com/wiki/Netflix/RxJava/images/rx-operators/sum.f.png">
* <img width="640" src="https://raw.github.com/wiki/Netflix/RxJava/images/rx-operators/sum.f.png" alt="">
*
* @param valueExtractor
* the function to extract a Float from each item emitted by the source Observable
Expand All @@ -350,7 +350,7 @@ public final Observable<Float> sumFloat(Func1<? super T, Float> valueExtractor)
* Returns an Observable that extracts an Integer from each of the items emitted by the source Observable
* via a function you specify, and then emits the sum of these Integers.
* <p>
* <img width="640" src="https://raw.github.com/wiki/Netflix/RxJava/images/rx-operators/sum.f.png">
* <img width="640" src="https://raw.github.com/wiki/Netflix/RxJava/images/rx-operators/sum.f.png" alt="">
*
* @param valueExtractor
* the function to extract an Integer from each item emitted by the source Observable
Expand All @@ -367,7 +367,7 @@ public final Observable<Integer> sumInteger(Func1<? super T, Integer> valueExtra
* Returns an Observable that extracts a Long from each of the items emitted by the source Observable via a
* function you specify, and then emits the sum of these Longs.
* <p>
* <img width="640" src="https://raw.github.com/wiki/Netflix/RxJava/images/rx-operators/sum.f.png">
* <img width="640" src="https://raw.github.com/wiki/Netflix/RxJava/images/rx-operators/sum.f.png" alt="">
*
* @param valueExtractor
* the function to extract a Long from each item emitted by the source Observable
Expand Down

0 comments on commit 5e7792d

Please sign in to comment.