Skip to content

Commit

Permalink
Fix bug in doc
Browse files Browse the repository at this point in the history
Co-authored-by: Markus KARG <[email protected]>
  • Loading branch information
NaridaL and mkarg committed Sep 30, 2023
1 parent 868e8dc commit 024f648
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion docs/index.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ JCommander.newBuilder()
.build()
.parse(argv);
Assert.assertEquals(jct.verbose.intValue(), 2);
Assert.assertEquals(args.verbose.intValue(), 2);
----

Here is another example:
Expand Down
2 changes: 1 addition & 1 deletion docs/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -845,7 +845,7 @@ <h2 id="_overview">1. Overview</h2>
.build()
.parse(argv);

Assert.assertEquals(jct.verbose.intValue(), 2);</code></pre>
Assert.assertEquals(args.verbose.intValue(), 2);</code></pre>
</div>
</div>
<div class="paragraph">
Expand Down

0 comments on commit 024f648

Please sign in to comment.