Skip to content

Commit

Permalink
Fix line number in proof replay errors
Browse files Browse the repository at this point in the history
  • Loading branch information
FliegendeWurst committed Sep 8, 2023
1 parent b8154bf commit 2eb3cc2
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ private ProofReplayer() {
public static void run(@Nonnull Token token, CharStream input, IProofFileParser prl,
URI source) {
input.seek(1 + token.getStopIndex()); // ends now on \proof|
run(input, prl, token.getLine(), source);
run(input, prl, token.getLine() - 1, source);
}

/**
Expand Down

0 comments on commit 2eb3cc2

Please sign in to comment.