Uploaded image for project: 'Spark'
  1. Spark
  2. SPARK-17953

Fix typo in SparkSession scaladoc

    XMLWordPrintableJSON

Details

    • Documentation
    • Status: Resolved
    • Trivial
    • Resolution: Fixed
    • None
    • 2.0.2, 2.1.0
    • Documentation
    • None

    Description

      At SparkSession builder example,

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

      should be

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

      There was one dot at the end of the third line

           .config("spark.some.config.option", "some-value").
      

      Attachments

        Activity

          People

            JunKim Tae Jun Kim
            JunKim Tae Jun Kim
            Votes:
            0 Vote for this issue
            Watchers:
            2 Start watching this issue

            Dates

              Created:
              Updated:
              Resolved: