Skip to content

Commit

Permalink
Fixed documentation: Contributor fixed inidex.html instead of index.adoc
Browse files Browse the repository at this point in the history
  • Loading branch information
mkarg committed Oct 7, 2023
1 parent 8164e23 commit 4c658b4
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 3 deletions.
6 changes: 6 additions & 0 deletions docs/index.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,12 @@ public class Args {
@Parameter(names = "-debug", description = "Debug mode")
private boolean debug = false;
private Integer setterParameter;
@Parameter(names = "-setterParameter", description = "A parameter annotation on a setter method")
public void setParameter(Integer value) {
this.setterParameter = value;
}
}
----

Expand Down
5 changes: 2 additions & 3 deletions docs/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -830,13 +830,12 @@ <h2 id="_overview">1. Overview</h2>

@Parameter(names = "-debug", description = "Debug mode")
private boolean debug = false;

private Integer setterParameter;
@Parameter(names = "-setterParameter", description = "A parameter annotation on a setter method")
public void setParameter(Integer value) {
this.setterParameter = value;
}

}</code></pre>
</div>
</div>
Expand Down Expand Up @@ -2211,7 +2210,7 @@ <h2 id="_download">29. Download</h2>
</div>
<div id="footer">
<div id="footer-text">
Last updated 2023-10-07 16:19:24 UTC
Last updated 2023-10-07 17:02:03 UTC
</div>
</div>
<script src="https://cdnjs.cloudflare.com/ajax/libs/prettify/r298/run_prettify.min.js"></script>
Expand Down

0 comments on commit 4c658b4

Please sign in to comment.