Skip to content

Commit e190d6f

Browse files
committed
fix Graph partitionStrategy comment
1 parent 2e0a037 commit e190d6f

File tree

1 file changed

+2
-2
lines changed
  • graphx/src/main/scala/org/apache/spark/graphx

1 file changed

+2
-2
lines changed

graphx/src/main/scala/org/apache/spark/graphx/Graph.scala

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -107,14 +107,14 @@ abstract class Graph[VD: ClassTag, ED: ClassTag] protected () extends Serializab
107107
/**
108108
* Repartitions the edges in the graph according to `partitionStrategy`.
109109
*
110-
* @param the partitioning strategy to use when partitioning the edges in the graph.
110+
* @param partitionStrategy the partitioning strategy to use when partitioning the edges in the graph.
111111
*/
112112
def partitionBy(partitionStrategy: PartitionStrategy): Graph[VD, ED]
113113

114114
/**
115115
* Repartitions the edges in the graph according to `partitionStrategy`.
116116
*
117-
* @param the partitioning strategy to use when partitioning the edges in the graph.
117+
* @param partitionStrategy the partitioning strategy to use when partitioning the edges in the graph.
118118
* @param numPartitions the number of edge partitions in the new graph.
119119
*/
120120
def partitionBy(partitionStrategy: PartitionStrategy, numPartitions: Int): Graph[VD, ED]

0 commit comments

Comments
 (0)