Skip to content

Commit 3660317

Browse files
committed
Make markdown pretty for some links
1 parent 842a738 commit 3660317

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ package org.apache.spark
2626
*
2727
* An accumulator is created from an initial value `v` by calling
2828
* [[SparkContext#accumulator SparkContext.accumulator]].
29-
* Tasks running on the cluster can then add to it using the `+=` operator in [[Accumulable]].
29+
* Tasks running on the cluster can then add to it using the `+=` operator.
3030
* However, they cannot read its value. Only the driver program can read the accumulator's value,
3131
* using its [[#value]] method.
3232
*

mllib/src/main/scala/org/apache/spark/mllib/fpm/FPGrowth.scala

+1-1
Original file line numberDiff line numberDiff line change
@@ -309,7 +309,7 @@ object FPGrowth {
309309

310310
/**
311311
* Frequent itemset.
312-
* @param items items in this itemset. Java users should call `FreqItemset#javaItems` instead.
312+
* @param items items in this itemset. Java users should call `FreqItemset.javaItems` instead.
313313
* @param freq frequency
314314
* @tparam Item item type
315315
*

mllib/src/main/scala/org/apache/spark/mllib/tree/GradientBoostedTrees.scala

+2-2
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ class GradientBoostedTrees private[spark] (
7474
}
7575

7676
/**
77-
* Java-friendly API for `org.apache.spark.mllib.tree.GradientBoostedTrees!#run`.
77+
* Java-friendly API for `org.apache.spark.mllib.tree.GradientBoostedTrees.run`.
7878
*/
7979
@Since("1.2.0")
8080
def run(input: JavaRDD[LabeledPoint]): GradientBoostedTreesModel = {
@@ -106,7 +106,7 @@ class GradientBoostedTrees private[spark] (
106106
}
107107

108108
/**
109-
* Java-friendly API for `org.apache.spark.mllib.tree.GradientBoostedTrees!#runWithValidation`.
109+
* Java-friendly API for `org.apache.spark.mllib.tree.GradientBoostedTrees.runWithValidation`.
110110
*/
111111
@Since("1.4.0")
112112
def runWithValidation(

0 commit comments

Comments
 (0)