From b6235e68b74dc0807d33b29bcfdbcc4bfce30b40 Mon Sep 17 00:00:00 2001 From: Jacky Li Date: Sun, 8 Mar 2015 02:08:13 +0800 Subject: [PATCH] fix for comment --- .../apache/spark/examples/graphx/LiveJournalPageRank.scala | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/examples/src/main/scala/org/apache/spark/examples/graphx/LiveJournalPageRank.scala b/examples/src/main/scala/org/apache/spark/examples/graphx/LiveJournalPageRank.scala index c6d509b044949..d0aa8dbf63c75 100644 --- a/examples/src/main/scala/org/apache/spark/examples/graphx/LiveJournalPageRank.scala +++ b/examples/src/main/scala/org/apache/spark/examples/graphx/LiveJournalPageRank.scala @@ -25,14 +25,14 @@ object LiveJournalPageRank { def main(args: Array[String]) { if (args.length < 1) { System.err.println( - "Usage: LiveJournalPageRank --numEPart=\n" + + "Usage: LiveJournalPageRank --numEPart= [other options]\n" + + " --numEPart=\n" + + " The number of partitions for the graph's edge RDD.\n" + " [--tol=]\n" + " The tolerance allowed at convergence (smaller => more accurate). Default is " + "0.001.\n" + " [--output=]\n" + " If specified, the file to write the ranks to.\n" + - " [--numEPart=]\n" + - " The number of partitions for the graph's edge RDD.\n" + " [--partStrategy=RandomVertexCut | EdgePartition1D | EdgePartition2D | " + "CanonicalRandomVertexCut]\n" + " The way edges are assigned to edge partitions. Default is RandomVertexCut.")