Skip to content

Commit

Permalink
Fix wrongly printed code block
Browse files Browse the repository at this point in the history
  • Loading branch information
HyukjinKwon committed Nov 24, 2016
1 parent 831e8e4 commit cfce0e8
Showing 1 changed file with 6 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -238,7 +238,9 @@ class JavaSparkContext(val sc: SparkContext)
* }}}
*
* Do
* `JavaPairRDD<String, byte[]> rdd = sparkContext.dataStreamFiles("hdfs://a-hdfs-path")`,
* <code>
* JavaPairRDD&lt;String, byte[]&gt; rdd = sparkContext.dataStreamFiles("hdfs://a-hdfs-path")
* </code>,
*
* then `rdd` contains
* {{{
Expand Down Expand Up @@ -270,7 +272,9 @@ class JavaSparkContext(val sc: SparkContext)
* }}}
*
* Do
* `JavaPairRDD&lt;String, byte[]&gt; rdd = sparkContext.dataStreamFiles("hdfs://a-hdfs-path")`,
* <code>
* JavaPairRDD&lt;String, byte[]&gt; rdd = sparkContext.dataStreamFiles("hdfs://a-hdfs-path")
* </code>,
*
* then `rdd` contains
* {{{
Expand Down

0 comments on commit cfce0e8

Please sign in to comment.