Skip to content

Commit

Permalink
Small fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
pwendell committed Apr 8, 2014
1 parent c318b24 commit f7d124f
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion core/src/main/scala/org/apache/spark/SparkContext.scala
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ class SparkContext(config: SparkConf)
* @param preferredNodeLocationData used in YARN mode to select nodes to launch containers on. Ca
* be generated using [[org.apache.spark.scheduler.InputFormatInfo.computePreferredLocations]]
* from a list of input files or InputFormats for the application.
*/
def this(config: SparkConf, preferredNodeLocationData: Map[String, Set[SplitInfo]]) = {
this(config)
this.preferredNodeLocationData = preferredNodeLocationData
Expand Down
4 changes: 2 additions & 2 deletions core/src/main/scala/org/apache/spark/package.scala
Original file line number Diff line number Diff line change
Expand Up @@ -33,11 +33,11 @@ package org.apache
* Java programmers should reference the [[spark.api.java]] package
* for Spark programming APIs in Java.
*
* Classes and methods marked with <span class="experimental badge">
* Classes and methods marked with <span class="experimental badge" style="float: none;">
* Experimental</span> are user-facing features which have not been officially adopted by the
* Spark project. These are subject to change or removal in minor releases.
*
* Classes and methods marked with <span class="developer badge">
* Classes and methods marked with <span class="developer badge" style="float: none;">
* Developer API</span> are intended for advanced users want to extend Spark through lower
* level interfaces. These are subject to changes or removal in minor releases.
*/
Expand Down
2 changes: 1 addition & 1 deletion docs/_plugins/copy_api_dirs.rb
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@

projects = core_projects
projects = projects + external_projects.map { |project_name| "external/" + project_name }
# projects = projects + sql_projects.map { |project_name| "sql/" + project_name }
projects = projects + sql_projects.map { |project_name| "sql/" + project_name }

puts "Moving to project root and building scaladoc."
curr_dir = pwd
Expand Down

0 comments on commit f7d124f

Please sign in to comment.