From d3e222c535f837e17f0b90b184b48e44b30ce4ee Mon Sep 17 00:00:00 2001 From: Theo Leuthardt <60556192+theoleuthardt@users.noreply.github.com> Date: Fri, 21 Feb 2025 11:57:34 +0100 Subject: [PATCH] uppercase pls --- backend/src/routes/regextest.route.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/backend/src/routes/regextest.route.ts b/backend/src/routes/regextest.route.ts index 446a59b..025a3ef 100644 --- a/backend/src/routes/regextest.route.ts +++ b/backend/src/routes/regextest.route.ts @@ -37,9 +37,9 @@ export async function regexTest(app: FastifyInstance) { let output = ""; if (result) { - output = "the input matches the regular expression!"; + output = "The input matches the regular expression!"; } 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);