Skip to content

Commit

Permalink
Fix grammar in obscure error message (PaperMC#880)
Browse files Browse the repository at this point in the history
The title really says it all. Change ``The forwarding-secret-file does not exists.`` to ``The forwarding-secret-file does not exist.``
  • Loading branch information
Remynfv authored Dec 12, 2022
1 parent 8deb0ff commit 495b796
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -496,7 +496,7 @@ public static VelocityConfiguration read(Path path) throws IOException {
throw new RuntimeException("The file " + forwardSecretFile + " is not a valid file or it is a directory.");
}
} else {
throw new RuntimeException("The forwarding-secret-file does not exists.");
throw new RuntimeException("The forwarding-secret-file does not exist.");
}
}
}
Expand Down

0 comments on commit 495b796

Please sign in to comment.