From 70eb05c10bff46898b6e488e770f0bf5343a7206 Mon Sep 17 00:00:00 2001 From: Overlord Date: Wed, 26 Nov 2025 13:24:52 +0000 Subject: [PATCH] escaped string --- app/src/main.v | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/src/main.v b/app/src/main.v index 5a4415f..0359809 100644 --- a/app/src/main.v +++ b/app/src/main.v @@ -94,7 +94,7 @@ pub fn (mut ctx Context) request_error(msg string) veb.Result { pub fn (mut ctx Context) forbidden() veb.Result { ctx.res.set_status(.forbidden) - return ctx.html(ctx.error_page(403, 'Forbidden', 'Oops! You aren't allowed around here.')) + return ctx.html(ctx.error_page(403, 'Forbidden', 'Oops! You aren\'t allowed around here.')) } pub fn (mut ctx Context) not_found() veb.Result {