Skip to content

Commit

Permalink
Fix reversed logic in the help template. (#190)
Browse files Browse the repository at this point in the history
  • Loading branch information
cmnbroad authored Apr 10, 2023
1 parent 732f462 commit b035769
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -60,9 +60,9 @@
<#if arg.options?has_content>
<p>
<#if arg.collection>
The ${arg.name} argument is an enumerated type (${arg.type}), which can accept the following values:
<#else>
The ${arg.name} argument is a list of an enumerated type (${arg.type}), which can accept one or more of the following values:
<#else>
The ${arg.name} argument is an enumerated type (${arg.type}), which can accept the following values:
</#if>
<dl class="enum">
<#list arg.options as option>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -402,7 +402,7 @@ <h3><a name="--enumCollection">--enumCollection </a>

</p>
<p>
The --enumCollection argument is an enumerated type (List[TestEnum]), which can accept the following values:
The --enumCollection argument is a list of an enumerated type (List[TestEnum]), which can accept one or more of the following values:
<dl class="enum">
<dt class="enum">ENUM_VALUE_1</dt>
<dd class="enum">This is enum value 1.</dd>
Expand All @@ -425,7 +425,7 @@ <h3><a name="--enumSetLong">--enumSetLong </a>

</p>
<p>
The --enumSetLong argument is an enumerated type (EnumSet[TestEnum]), which can accept the following values:
The --enumSetLong argument is a list of an enumerated type (EnumSet[TestEnum]), which can accept one or more of the following values:
<dl class="enum">
<dt class="enum">ENUM_VALUE_1</dt>
<dd class="enum">This is enum value 1.</dd>
Expand Down Expand Up @@ -502,7 +502,7 @@ <h3><a name="--nonCLPEnumCollection">--nonCLPEnumCollection </a>

</p>
<p>
The --nonCLPEnumCollection argument is an enumerated type (List[TestNonCLPEnum]), which can accept the following values:
The --nonCLPEnumCollection argument is a list of an enumerated type (List[TestNonCLPEnum]), which can accept one or more of the following values:
<dl class="enum">
<dt class="enum">NON_CLP_ENUM_VALUE_1</dt>
<dd class="enum">This is the NON_CLP_ENUM_VALUE_1 comment</dd>
Expand All @@ -525,7 +525,7 @@ <h3><a name="--optionalClpEnum">--optionalClpEnum </a>

</p>
<p>
The --optionalClpEnum argument is a list of an enumerated type (TestEnum), which can accept one or more of the following values:
The --optionalClpEnum argument is an enumerated type (TestEnum), which can accept the following values:
<dl class="enum">
<dt class="enum">ENUM_VALUE_1</dt>
<dd class="enum">This is enum value 1.</dd>
Expand Down Expand Up @@ -640,7 +640,7 @@ <h3><a name="--requiredClpEnum">--requiredClpEnum </a>

</p>
<p>
The --requiredClpEnum argument is a list of an enumerated type (TestEnum), which can accept one or more of the following values:
The --requiredClpEnum argument is an enumerated type (TestEnum), which can accept the following values:
<dl class="enum">
<dt class="enum">ENUM_VALUE_1</dt>
<dd class="enum">This is enum value 1.</dd>
Expand Down

0 comments on commit b035769

Please sign in to comment.