We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 907fc2a commit 77ee25eCopy full SHA for 77ee25e
1 file changed
extractor/src/main/java/org/schabi/newpipe/extractor/utils/jsextractor/Lexer.java
@@ -256,7 +256,7 @@ void handleOpenBraceBooks() {
256
*/
257
void handleCloseParenBooks(final int start) throws ParsingException {
258
if (parenStack.isEmpty()) {
259
- throw new ParsingException("unmached closing paren at " + start);
+ throw new ParsingException("unmatched closing paren at " + start);
260
}
261
lastThree.push(new ParenMetaToken(Token.RP, stream.lineno, parenStack.pop()));
262
0 commit comments