Skip to content

Commit 0b3c082

Browse files
authored
Merge branch 'master' into docs-missing-class
2 parents f15feba + d661904 commit 0b3c082

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

docs/index.adoc

+3-3
Original file line numberDiff line numberDiff line change
@@ -599,7 +599,7 @@ will allow you to parse:
599599

600600
[source,bash]
601601
----
602-
$ java Main -debug file1 file2
602+
$ java Main -debug 2 file1 file2
603603
----
604604

605605
and the field files will receive the strings `"file1"` and `"file2"`.
@@ -934,8 +934,8 @@ CommandAdd add = new CommandAdd();
934934
CommandCommit commit = new CommandCommit();
935935
JCommander jc = JCommander.newBuilder()
936936
.addObject(cm)
937-
.addCommand("add", add);
938-
.addCommand("commit", commit);
937+
.addCommand("add", add)
938+
.addCommand("commit", commit)
939939
.build();
940940
941941
jc.parse("-v", "commit", "--amend", "--author=cbeust", "A.java", "B.java");

docs/index.html

+4-4
Original file line numberDiff line numberDiff line change
@@ -1462,7 +1462,7 @@ <h2 id="_main_parameter">5. Main parameter</h2>
14621462
</div>
14631463
<div class="listingblock">
14641464
<div class="content">
1465-
<pre class="prettyprint highlight"><code data-lang="bash">$ java Main -debug file1 file2</code></pre>
1465+
<pre class="prettyprint highlight"><code data-lang="bash">$ java Main -debug 2 file1 file2</code></pre>
14661466
</div>
14671467
</div>
14681468
<div class="paragraph">
@@ -1870,8 +1870,8 @@ <h2 id="_more_complex_syntaxes_commands">16. More complex syntaxes (commands)</h
18701870
CommandCommit commit = new CommandCommit();
18711871
JCommander jc = JCommander.newBuilder()
18721872
.addObject(cm)
1873-
.addCommand("add", add);
1874-
.addCommand("commit", commit);
1873+
.addCommand("add", add)
1874+
.addCommand("commit", commit)
18751875
.build();
18761876

18771877
jc.parse("-v", "commit", "--amend", "--author=cbeust", "A.java", "B.java");
@@ -2216,7 +2216,7 @@ <h2 id="_download">29. Download</h2>
22162216
</div>
22172217
<div id="footer">
22182218
<div id="footer-text">
2219-
Last updated 2024-11-29 21:12:39 +0100
2219+
Last updated 2024-11-29 21:16:04 +0100
22202220
</div>
22212221
</div>
22222222
<script src="https://cdnjs.cloudflare.com/ajax/libs/prettify/r298/run_prettify.min.js"></script>

0 commit comments

Comments
 (0)