Skip to content

Commit 2fbed37

Browse files
attilapirossrowen
authored andcommitted
[MINOR][DOC] Add missing space after comma
Adding missing spaces after commas. Closes apache#24205 from attilapiros/minor-doc-changes. Authored-by: “attilapiros” <[email protected]> Signed-off-by: Sean Owen <[email protected]>
1 parent 1f2564d commit 2fbed37

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

docs/configuration.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2296,7 +2296,7 @@ In some cases, you may want to avoid hard-coding certain configurations in a `Sp
22962296
instance, Spark allows you to simply create an empty conf and set spark/spark hadoop properties.
22972297

22982298
{% highlight scala %}
2299-
val conf = new SparkConf().set("spark.hadoop.abc.def","xyz")
2299+
val conf = new SparkConf().set("spark.hadoop.abc.def", "xyz")
23002300
val sc = new SparkContext(conf)
23012301
{% endhighlight %}
23022302

docs/graphx-programming-guide.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -317,7 +317,7 @@ class Graph[VD, ED] {
317317
// Iterative graph-parallel computation ==========================================================
318318
def pregel[A](initialMsg: A, maxIterations: Int, activeDirection: EdgeDirection)(
319319
vprog: (VertexId, VD, A) => VD,
320-
sendMsg: EdgeTriplet[VD, ED] => Iterator[(VertexId,A)],
320+
sendMsg: EdgeTriplet[VD, ED] => Iterator[(VertexId, A)],
321321
mergeMsg: (A, A) => A)
322322
: Graph[VD, ED]
323323
// Basic graph algorithms ========================================================================

docs/mllib-statistics.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -239,7 +239,7 @@ Refer to the [`Statistics` Python docs](api/python/pyspark.mllib.html#pyspark.ml
239239
### Streaming Significance Testing
240240
`spark.mllib` provides online implementations of some tests to support use cases
241241
like A/B testing. These tests may be performed on a Spark Streaming
242-
`DStream[(Boolean,Double)]` where the first element of each tuple
242+
`DStream[(Boolean, Double)]` where the first element of each tuple
243243
indicates control group (`false`) or treatment group (`true`) and the
244244
second element is the value of an observation.
245245

0 commit comments

Comments
 (0)