summaryrefslogtreecommitdiff
path: root/RGens/src/main/java/bjc/rgens/text/markov/TextGenerator.java
diff options
context:
space:
mode:
Diffstat (limited to 'RGens/src/main/java/bjc/rgens/text/markov/TextGenerator.java')
-rw-r--r--RGens/src/main/java/bjc/rgens/text/markov/TextGenerator.java19
1 files changed, 9 insertions, 10 deletions
diff --git a/RGens/src/main/java/bjc/rgens/text/markov/TextGenerator.java b/RGens/src/main/java/bjc/rgens/text/markov/TextGenerator.java
index 0ec40df..f629d49 100644
--- a/RGens/src/main/java/bjc/rgens/text/markov/TextGenerator.java
+++ b/RGens/src/main/java/bjc/rgens/text/markov/TextGenerator.java
@@ -13,16 +13,15 @@ public class TextGenerator {
* Main method.
*
* @param args
- * when used with three arguments, the first represents
- * the k-order of the Markov objects. The second
- * represents the number of characters to print out. The
- * third represents the file to be read.
+ * When used with three arguments, the first represents the k-order
+ * of the Markov objects. The second represents the number of
+ * characters to print out. The third represents the file to be
+ * read.
*
- * When used with two arguments, the first represents the
- * k-order of the Markov objects, and the second
- * represents the file to be read. The generated text
- * will be the same number of characters as the original
- * file.
+ * When used with two arguments, the first represents the k-order
+ * of the Markov objects, and the second represents the file to be
+ * read. The generated text will be the same number of characters
+ * as the original file.
*/
public static void main(String[] args) {
int k = 0;
@@ -71,4 +70,4 @@ public class TextGenerator {
System.exit(1);
}
}
-} \ No newline at end of file
+}