uppercase pls

This commit is contained in:
Theo Leuthardt 2025-02-21 11:57:34 +01:00 committed by GitHub
parent 8cf282e127
commit d3e222c535
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -37,9 +37,9 @@ export async function regexTest(app: FastifyInstance) {
let output = ""; let output = "";
if (result) { if (result) {
output = "the input matches the regular expression!"; output = "The input matches the regular expression!";
} else { } else {
output = "the input does not match the regular expression."; output = "The input does not match the regular expression.";
} }
reply.header("Content-Type", "text/plain").status(200).send(output); reply.header("Content-Type", "text/plain").status(200).send(output);