Skip to content

Commit b6235e6

Browse files
author
Jacky Li
committed
fix for comment
1 parent 87be83b commit b6235e6

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

examples/src/main/scala/org/apache/spark/examples/graphx/LiveJournalPageRank.scala

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,14 +25,14 @@ object LiveJournalPageRank {
2525
def main(args: Array[String]) {
2626
if (args.length < 1) {
2727
System.err.println(
28-
"Usage: LiveJournalPageRank <edge_list_file> --numEPart=<num_edge_partitions>\n" +
28+
"Usage: LiveJournalPageRank <edge_list_file> --numEPart=<num_edge_partitions> [other options]\n" +
29+
" --numEPart=<num_edge_partitions>\n" +
30+
" The number of partitions for the graph's edge RDD.\n" +
2931
" [--tol=<tolerance>]\n" +
3032
" The tolerance allowed at convergence (smaller => more accurate). Default is " +
3133
"0.001.\n" +
3234
" [--output=<output_file>]\n" +
3335
" If specified, the file to write the ranks to.\n" +
34-
" [--numEPart=<num_edge_partitions>]\n" +
35-
" The number of partitions for the graph's edge RDD.\n" +
3636
" [--partStrategy=RandomVertexCut | EdgePartition1D | EdgePartition2D | " +
3737
"CanonicalRandomVertexCut]\n" +
3838
" The way edges are assigned to edge partitions. Default is RandomVertexCut.")

0 commit comments

Comments
 (0)