Skip to content

Commit

Permalink
chore(examples): Avoid a redundant string template
Browse files Browse the repository at this point in the history
Signed-off-by: Sebastian Schuberth <[email protected]>
  • Loading branch information
sschuberth committed Oct 10, 2023
1 parent 05f8725 commit 5eaf46d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion examples/example.rules.kts
Original file line number Diff line number Diff line change
Expand Up @@ -227,7 +227,7 @@ fun RuleSet.highSeverityVulnerabilityInPackageRule() = packageRule("HIGH_SEVERIT
issue(
Severity.ERROR,
"The package ${pkg.metadata.id.toCoordinates()} has a vulnerability with $scoringSystem severity > " +
"$maxAcceptedSeverity",
maxAcceptedSeverity,
howToFixDefault()
)
}
Expand Down

0 comments on commit 5eaf46d

Please sign in to comment.