Skip to content

Commit c6296b8

Browse files
fmeumoetr
authored andcommitted
Add missing space to annotation error message
1 parent fafa5af commit c6296b8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/com/code_intelligence/jazzer/mutation/support/AnnotationSupport.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ private static void ensureDeepAppliesTo(Annotation annotation, Class<?> clazz) {
7474
}
7575
if (appliesTo.subClassesOf().length != 0) {
7676
if (!helpText.isEmpty()) {
77-
helpText += "as well as ";
77+
helpText += " as well as ";
7878
}
7979
helpText += "subclasses of ";
8080
helpText += stream(appliesTo.subClassesOf()).map(Class::getName).collect(joining(", "));

0 commit comments

Comments
 (0)