Skip to content

Commit 77ee25e

Browse files
committed
Fix typo
1 parent 907fc2a commit 77ee25e

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

  • extractor/src/main/java/org/schabi/newpipe/extractor/utils/jsextractor

extractor/src/main/java/org/schabi/newpipe/extractor/utils/jsextractor/Lexer.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -256,7 +256,7 @@ void handleOpenBraceBooks() {
256256
*/
257257
void handleCloseParenBooks(final int start) throws ParsingException {
258258
if (parenStack.isEmpty()) {
259-
throw new ParsingException("unmached closing paren at " + start);
259+
throw new ParsingException("unmatched closing paren at " + start);
260260
}
261261
lastThree.push(new ParenMetaToken(Token.RP, stream.lineno, parenStack.pop()));
262262
}

0 commit comments

Comments
 (0)