Github user HyukjinKwon commented on a diff in the pull request:

    https://github.com/apache/spark/pull/16013#discussion_r89665558
  
    --- Diff: core/src/main/scala/org/apache/spark/rdd/DoubleRDDFunctions.scala 
---
    @@ -155,7 +155,7 @@ class DoubleRDDFunctions(self: RDD[Double]) extends 
Logging with Serializable {
        * to the right except for the last which is closed
        *  e.g. for the array
        *  [1, 10, 20, 50] the buckets are [1, 10) [10, 20) [20, 50]
    -   *  e.g 1<=x<10 , 10<=x<20, 20<=x<=50
    +   *  e.g 1&lt;=x&lt;10 , 10&lt;=x&lt;20, 20&lt;=x&lt;=50
    --- End diff --
    
    This originally gives an error as below
    
    ```
    [error] .../java/org/apache/spark/rdd/DoubleRDDFunctions.java:73: error: 
malformed HTML
    [error]    *  e.g 1<=x<10, 10<=x<20, 20<=x<=50
    [error]            ^
    [error] .../java/org/apache/spark/rdd/DoubleRDDFunctions.java:73: error: 
malformed HTML
    [error]    *  e.g 1<=x<10, 10<=x<20, 20<=x<=50
    [error]               ^
    [error] .../java/org/apache/spark/rdd/DoubleRDDFunctions.java:73: error: 
malformed HTML
    [error]    *  e.g 1<=x<10, 10<=x<20, 20<=x<=50
    [error]                      ^
    ...
    ```
    
    However, after fixing it as above, 
    
    This is being printed as they are in javadoc (not in scaladoc)
    
    <img width="567" alt="2016-11-26 1 14 44" 
src="https://cloud.githubusercontent.com/assets/6477701/20638079/e17d0742-b3de-11e6-820d-d2ac85d09947.png";>
    
    It seems we should find another approach to deal with this.


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscr...@spark.apache.org
For additional commands, e-mail: reviews-h...@spark.apache.org

Reply via email to