Minor, fix typo in assertion message

This commit is contained in:
Alexander Udalov
2017-01-30 17:22:46 +03:00
parent 424afba246
commit 7371dc9b54
@@ -29,7 +29,7 @@ public class KotlinCompilerVersion {
static {
if (!VERSION.equals("@snapshot@") && !VERSION.contains("-") && IS_PRE_RELEASE) {
throw new IllegalStateException(
"IS_PRE_RELEASE cannot be false for a compiler without '-' in its version.\n" +
"IS_PRE_RELEASE cannot be true for a compiler without '-' in its version.\n" +
"Please change IS_PRE_RELEASE to false, commit and push this change to master"
);
}