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 {