diff options
| author | Benjamin J. Culkin <bjculkin@mix.wvu.edu> | 2017-10-11 22:25:09 -0300 |
|---|---|---|
| committer | Benjamin J. Culkin <bjculkin@mix.wvu.edu> | 2017-10-11 22:25:09 -0300 |
| commit | 924bcdc9a65c7f88004d6dbf8dfa138c9a125e5d (patch) | |
| tree | 396bcf7bb59e17091f268dadebbcdb42725e49c7 /RGens/src/main/java/bjc/rgens/text/markov/TextGenerator.java | |
| parent | 9a0bf41772184f7072f76cfa94e520d022261e4f (diff) | |
Source cleanup
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.java | 19 |
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 +} |
