Skip to content
Snippets Groups Projects
Commit 36d81c2c authored by Jun Kim's avatar Jun Kim Committed by Reynold Xin
Browse files

[SPARK-17953][DOCUMENTATION] Fix typo in SparkSession scaladoc

## 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 #15498 from tae-jun/SPARK-17953.
parent 6ce1b675
No related branches found
No related tags found
No related merge requests found
......@@ -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()
* }}}
*/
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment