Modify wrong help message of the FastGraphGen example

git-svn-id: https://svn.apache.org/repos/asf/hama/trunk@1689535 13f79535-47bb-0310-9956-ffa450edef68
diff --git a/examples/src/main/java/org/apache/hama/examples/util/FastGraphGen.java b/examples/src/main/java/org/apache/hama/examples/util/FastGraphGen.java
index a2f1aa3..aecb7b3 100644
--- a/examples/src/main/java/org/apache/hama/examples/util/FastGraphGen.java
+++ b/examples/src/main/java/org/apache/hama/examples/util/FastGraphGen.java
@@ -145,12 +145,12 @@
     boolean outputType = false;
 
     if (args.length == 0) {
-      new HelpFormatter().printHelp("gen -p OUTPUT_PATH [options]", opts);
+      new HelpFormatter().printHelp("gen -o OUTPUT_PATH [options]", opts);
       System.exit(-1);
     }
 
     if (cliParser.hasOption("h")) {
-      new HelpFormatter().printHelp("FastGraphGen -p OUTPUT_PATH [options]", opts);
+      new HelpFormatter().printHelp("FastGraphGen -o OUTPUT_PATH [options]", opts);
       return;
     }