Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Correct javadoc for forceNonOverwritable #587

Merged
merged 1 commit into from
Sep 27, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions docs/apidocs/com/beust/jcommander/Parameter.html
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ <h2>Optional Element Summary</h2>
<div class="col-first odd-row-color"><code>boolean</code></div>
<div class="col-second odd-row-color"><code><a href="#forceNonOverwritable()" class="member-name-link">forceNonOverwritable</a></code></div>
<div class="col-last odd-row-color">
<div class="block">If true, this parameter can be overwritten through a file or another appearance of the parameter</div>
<div class="block">If true, this parameter can not be overwritten through a file or another appearance of the parameter</div>
</div>
<div class="col-first even-row-color"><code>boolean</code></div>
<div class="col-second even-row-color"><code><a href="#help()" class="member-name-link">help</a></code></div>
Expand Down Expand Up @@ -436,7 +436,7 @@ <h3>help</h3>
<section class="detail" id="forceNonOverwritable()">
<h3>forceNonOverwritable</h3>
<div class="member-signature"><span class="return-type">boolean</span>&nbsp;<span class="element-name">forceNonOverwritable</span></div>
<div class="block">If true, this parameter can be overwritten through a file or another appearance of the parameter</div>
<div class="block">If true, this parameter can not be overwritten through a file or another appearance of the parameter</div>
<dl class="notes">
<dt>Returns:</dt>
<dd>nc</dd>
Expand Down
2 changes: 1 addition & 1 deletion docs/apidocs/index-all.html
Original file line number Diff line number Diff line change
Expand Up @@ -416,7 +416,7 @@ <h2 class="title" id="I:F">F</h2>
<dd>&nbsp;</dd>
<dt><a href="com/beust/jcommander/Parameter.html#forceNonOverwritable()" class="member-name-link">forceNonOverwritable()</a> - Element in annotation interface com.beust.jcommander.<a href="com/beust/jcommander/Parameter.html" title="annotation interface in com.beust.jcommander">Parameter</a></dt>
<dd>
<div class="block">If true, this parameter can be overwritten through a file or another appearance of the parameter</div>
<div class="block">If true, this parameter can not be overwritten through a file or another appearance of the parameter</div>
</dd>
<dt><a href="com/beust/jcommander/FuzzyMap.html" class="type-name-link" title="class in com.beust.jcommander">FuzzyMap</a> - Class in <a href="com/beust/jcommander/package-summary.html">com.beust.jcommander</a></dt>
<dd>
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/com/beust/jcommander/Parameter.java
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@
boolean help() default false;

/**
* If true, this parameter can be overwritten through a file or another appearance of the parameter
* If true, this parameter can not be overwritten through a file or another appearance of the parameter
* @return nc
*/
boolean forceNonOverwritable() default false;
Expand Down
Loading