Skip to content

Commit de2a735

Browse files
committed
ParamsValidator fix
1 parent d9fc599 commit de2a735

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/ConsoleAppFramework/ParamsValidator.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ public class ParamsValidator : IParamsValidator
5757
.ToImmutableArray();
5858

5959
return failedResults.Any()
60-
? new ValidationResult(string.Concat("; ", failedResults.Select(res => res?.ErrorMessage)))
60+
? new ValidationResult(string.Join("; ", failedResults.Select(res => res?.ErrorMessage)))
6161
: ValidationResult.Success;
6262
}
6363

0 commit comments

Comments
 (0)