diff --git a/docs/index.adoc b/docs/index.adoc index 367ccf58..7428e4bf 100644 --- a/docs/index.adoc +++ b/docs/index.adoc @@ -599,7 +599,7 @@ will allow you to parse: [source,bash] ---- -$ java Main -debug file1 file2 +$ java Main -debug 2 file1 file2 ---- and the field files will receive the strings `"file1"` and `"file2"`. @@ -934,8 +934,8 @@ CommandAdd add = new CommandAdd(); CommandCommit commit = new CommandCommit(); JCommander jc = JCommander.newBuilder() .addObject(cm) - .addCommand("add", add); - .addCommand("commit", commit); + .addCommand("add", add) + .addCommand("commit", commit) .build(); jc.parse("-v", "commit", "--amend", "--author=cbeust", "A.java", "B.java"); diff --git a/docs/index.html b/docs/index.html index 05b3559d..72271006 100644 --- a/docs/index.html +++ b/docs/index.html @@ -1462,7 +1462,7 @@

5. Main parameter

-
$ java Main -debug file1 file2
+
$ java Main -debug 2 file1 file2
@@ -1870,8 +1870,8 @@

16. More complex syntaxes (commands)29. Download