[GitHub] spark pull request #15498: [SPARK-17953] [Documentation] Fix typo in SparkSe...

2016-10-15 Thread asfgit
Github user asfgit closed the pull request at:

https://github.com/apache/spark/pull/15498


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---

-
To unsubscribe, e-mail: reviews-unsubscr...@spark.apache.org
For additional commands, e-mail: reviews-h...@spark.apache.org



[GitHub] spark pull request #15498: [SPARK-17953] [Documentation] Fix typo in SparkSe...

2016-10-15 Thread tae-jun
GitHub user tae-jun opened a pull request:

https://github.com/apache/spark/pull/15498

[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!

You can merge this pull request into a Git repository by running:

$ git pull https://github.com/tae-jun/spark SPARK-17953

Alternatively you can review and apply these changes as the patch at:

https://github.com/apache/spark/pull/15498.patch

To close this pull request, make a commit to your master/trunk branch
with (at least) the following in the commit message:

This closes #15498


commit bd4e125dd09a0937f050a4a6a6db18859fc235f0
Author: Jun Kim 
Date:   2016-10-15T07:26:15Z

Fix typo in SparkSession scaladoc

There was one unexpected dot!




---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---

-
To unsubscribe, e-mail: reviews-unsubscr...@spark.apache.org
For additional commands, e-mail: reviews-h...@spark.apache.org