Skip to content

Commit

Permalink
Use green as the color for possible values. (#16)
Browse files Browse the repository at this point in the history
Previously, they defaulted to the terminal color.
  • Loading branch information
nh13 authored Mar 2, 2018
1 parent 5fa47c6 commit 357b73e
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ object ClpArgumentDefinitionPrinting {
val sb: StringBuilder = new StringBuilder
if (argumentDefinition.doc.nonEmpty) sb.append(argumentDefinition.doc).append(" ")
if (argumentDefinition.optional) sb.append(makeDefaultValueString(argumentDefinition.defaultValue))
val possibles = possibleValues(argumentDefinition.unitType)
val possibles = KGRN(possibleValues(argumentDefinition.unitType))
if (possibles.nonEmpty) sb.append(" ").append(possibles)

if (argumentDefinition.mutuallyExclusive.nonEmpty) {
Expand Down

0 comments on commit 357b73e

Please sign in to comment.