pull/1256/head
litetex 2025-03-05 15:55:46 +01:00
rodzic 907fc2ac52
commit 77ee25e3b6
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: 525B43E6039B3689
1 zmienionych plików z 1 dodań i 1 usunięć

Wyświetl plik

@ -256,7 +256,7 @@ public class Lexer {
*/
void handleCloseParenBooks(final int start) throws ParsingException {
if (parenStack.isEmpty()) {
throw new ParsingException("unmached closing paren at " + start);
throw new ParsingException("unmatched closing paren at " + start);
}
lastThree.push(new ParenMetaToken(Token.RP, stream.lineno, parenStack.pop()));
}