Skip to content

Commit

Permalink
Use comma separator
Browse files Browse the repository at this point in the history
Co-authored-by: Marten Lohstroh <marten@berkeley.edu>
  • Loading branch information
cmnrd and lhstrh committed Feb 15, 2022
1 parent 3615407 commit eb3b598
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion org.lflang/src/org/lflang/validation/LFValidator.java
Original file line number Diff line number Diff line change
Expand Up @@ -503,7 +503,7 @@ public void checkKeyValuePair(KeyValuePair param) {
if (prop == null) {
String options = TargetProperty.getOptions().stream()
.map(p -> p.description).sorted()
.collect(Collectors.joining(" "));
.collect(Collectors.joining(", "));
warning(
"Unrecognized target parameter: " + param.getName() +
". Recognized parameters are: " + options,
Expand Down

0 comments on commit eb3b598

Please sign in to comment.