Skip to content

Commit

Permalink
[SPARK-17953][DOCUMENTATION] Fix typo in SparkSession scaladoc
Browse files Browse the repository at this point in the history
## What changes were proposed in this pull request?

### Before:
```scala
SparkSession.builder()
     .master("local")
     .appName("Word Count")
     .config("spark.some.config.option", "some-value").
     .getOrCreate()
```

### After:
```scala
SparkSession.builder()
     .master("local")
     .appName("Word Count")
     .config("spark.some.config.option", "some-value")
     .getOrCreate()
```

There was one unexpected dot!

Author: Jun Kim <i2r.jun@gmail.com>

Closes apache#15498 from tae-jun/SPARK-17953.
  • Loading branch information
tae-jun authored and Robert Kruszewski committed Oct 31, 2016
1 parent 07e54d3 commit 855cb44
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ import org.apache.spark.util.Utils
* SparkSession.builder()
* .master("local")
* .appName("Word Count")
* .config("spark.some.config.option", "some-value").
* .config("spark.some.config.option", "some-value")
* .getOrCreate()
* }}}
*/
Expand Down

0 comments on commit 855cb44

Please sign in to comment.