diff --git a/idea/src/org/jetbrains/jet/plugin/compiler/JetCompiler.java b/idea/src/org/jetbrains/jet/plugin/compiler/JetCompiler.java index b2e56d1f881..056ea2b87d4 100644 --- a/idea/src/org/jetbrains/jet/plugin/compiler/JetCompiler.java +++ b/idea/src/org/jetbrains/jet/plugin/compiler/JetCompiler.java @@ -523,7 +523,7 @@ public class JetCompiler implements TranslatingCompiler { handleSkippedOutput(output.substring(firstUnprocessedIndex).trim()); } int exitCode = event.getExitCode(); - // 0 is normal, 1 is "errors found" — handled by the messages above + // 0 is normal, 1 is "errors found" - handled by the messages above if (exitCode != 0 && exitCode != 1) { compileContext.addMessage(ERROR, "Compiler terminated with exit code: " + exitCode, "", -1, -1); }