Skip to content

Commit 75c47b3

Browse files
committed
Fixed file line length
1 parent 4f87968 commit 75c47b3

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

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

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,8 +44,9 @@ abstract class NarrowDependency[T](rdd: RDD[T]) extends Dependency(rdd) {
4444
* Represents a dependency on the output of a shuffle stage.
4545
* @param rdd the parent RDD
4646
* @param partitioner partitioner used to partition the shuffle output
47-
* @param serializer [[org.apache.spark.serializer.Serializer Serializer]] to use. If set to null, the default
48-
* serializer, as specified by `spark.serializer` config option, will be used.
47+
* @param serializer [[org.apache.spark.serializer.Serializer Serializer]] to use. If set to null,
48+
* the default serializer, as specified by `spark.serializer` config option, will
49+
* be used.
4950
*/
5051
class ShuffleDependency[K, V](
5152
@transient rdd: RDD[_ <: Product2[K, V]],

0 commit comments

Comments
 (0)