Tae Jun Kim created SPARK-17953:
-----------------------------------

             Summary: Fix typo in SparkSession scaladoc
                 Key: SPARK-17953
                 URL: https://issues.apache.org/jira/browse/SPARK-17953
             Project: Spark
          Issue Type: Documentation
          Components: Documentation
            Reporter: Tae Jun Kim
            Priority: Minor


At SparkSession builder example,
{code}
SparkSession.builder()
     .master("local")
     .appName("Word Count")
     .config("spark.some.config.option", "some-value").
     .getOrCreate()
{code}

should be

{code}
SparkSession.builder()
     .master("local")
     .appName("Word Count")
     .config("spark.some.config.option", "some-value")
     .getOrCreate()
{code}

There was one dot at the end of the third line
{code}
     .config("spark.some.config.option", "some-value").
{code}



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

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

Reply via email to