File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -605,7 +605,7 @@ Spark SQL can automatically infer the schema of a JSON dataset and load it as a
605605This conversion can be done using one of two methods in a SQLContext:
606606
607607* ` jsonFile ` - loads data from a directory of JSON files where each line of the files is a JSON object.
608- * ` jsonRdd ` - loads data from an existing RDD where each element of the RDD is a string containing a JSON object.
608+ * ` jsonRDD ` - loads data from an existing RDD where each element of the RDD is a string containing a JSON object.
609609
610610{% highlight scala %}
611611// sc is an existing SparkContext.
@@ -643,7 +643,7 @@ Spark SQL can automatically infer the schema of a JSON dataset and load it as a
643643This conversion can be done using one of two methods in a JavaSQLContext :
644644
645645* ` jsonFile ` - loads data from a directory of JSON files where each line of the files is a JSON object.
646- * ` jsonRdd ` - loads data from an existing RDD where each element of the RDD is a string containing a JSON object.
646+ * ` jsonRDD ` - loads data from an existing RDD where each element of the RDD is a string containing a JSON object.
647647
648648{% highlight java %}
649649// sc is an existing JavaSparkContext.
@@ -681,7 +681,7 @@ Spark SQL can automatically infer the schema of a JSON dataset and load it as a
681681This conversion can be done using one of two methods in a SQLContext:
682682
683683* ` jsonFile ` - loads data from a directory of JSON files where each line of the files is a JSON object.
684- * ` jsonRdd ` - loads data from an existing RDD where each element of the RDD is a string containing a JSON object.
684+ * ` jsonRDD ` - loads data from an existing RDD where each element of the RDD is a string containing a JSON object.
685685
686686{% highlight python %}
687687# sc is an existing SparkContext.
You can’t perform that action at this time.
0 commit comments