Skip to content

Commit f7d124f

Browse files
committed
Small fixes
1 parent c318b24 commit f7d124f

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

core/src/main/scala/org/apache/spark/SparkContext.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ class SparkContext(config: SparkConf)
6969
* @param preferredNodeLocationData used in YARN mode to select nodes to launch containers on. Ca
7070
* be generated using [[org.apache.spark.scheduler.InputFormatInfo.computePreferredLocations]]
7171
* from a list of input files or InputFormats for the application.
72-
72+
*/
7373
def this(config: SparkConf, preferredNodeLocationData: Map[String, Set[SplitInfo]]) = {
7474
this(config)
7575
this.preferredNodeLocationData = preferredNodeLocationData

core/src/main/scala/org/apache/spark/package.scala

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,11 +33,11 @@ package org.apache
3333
* Java programmers should reference the [[spark.api.java]] package
3434
* for Spark programming APIs in Java.
3535
*
36-
* Classes and methods marked with <span class="experimental badge">
36+
* Classes and methods marked with <span class="experimental badge" style="float: none;">
3737
* Experimental</span> are user-facing features which have not been officially adopted by the
3838
* Spark project. These are subject to change or removal in minor releases.
3939
*
40-
* Classes and methods marked with <span class="developer badge">
40+
* Classes and methods marked with <span class="developer badge" style="float: none;">
4141
* Developer API</span> are intended for advanced users want to extend Spark through lower
4242
* level interfaces. These are subject to changes or removal in minor releases.
4343
*/

docs/_plugins/copy_api_dirs.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626

2727
projects = core_projects
2828
projects = projects + external_projects.map { |project_name| "external/" + project_name }
29-
# projects = projects + sql_projects.map { |project_name| "sql/" + project_name }
29+
projects = projects + sql_projects.map { |project_name| "sql/" + project_name }
3030

3131
puts "Moving to project root and building scaladoc."
3232
curr_dir = pwd

0 commit comments

Comments
 (0)