Skip to content

Commit c8852bb

Browse files
committed
Clarify error message
1 parent 285d524 commit c8852bb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/com/laytonsmith/core/MethodScriptCompiler.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -831,7 +831,7 @@ public static List<Script> preprocess(List<Token> tokenStream) throws ConfigComp
831831
throw new ConfigCompileException("Did not expect a multiline start symbol here, are you missing a multiline end symbol above this line?", thisToken.target);
832832
}
833833
if (thisToken.val().equals(">>>") && !prevToken.type.equals(TType.ALIAS_END)) {
834-
throw new ConfigCompileException("Multiline symbol must follow the alias_end token", thisToken.target);
834+
throw new ConfigCompileException("Multiline symbol must follow the alias_end (=) symbol", thisToken.target);
835835
}
836836

837837
//If we're not in a multiline construct, or we are in it and it's not a newline, add

0 commit comments

Comments
 (0)