munificent / craftinginterpreters

Repository for the book "Crafting Interpreters"
http://www.craftinginterpreters.com/
Other
8.75k stars 1.03k forks source link

Typo 0 Missing space #989

Closed Budlee closed 3 years ago

Budlee commented 3 years ago

https://github.com/munificent/craftinginterpreters/blob/master/java/com/craftinginterpreters/lox/Lox.java#L116

I think a space is missing after the Error

currently System.err.println( "[line " + line + "] Error" + where + ": " + message);

System.err.println( "[line " + line + "] Error " + where + ": " + message);

Budlee commented 3 years ago

my bad, please delete