From a820ef1f918b502c69968e532f6eb7f38e4ec77b Mon Sep 17 00:00:00 2001 From: flopetautschnig <69145145+floscodes@users.noreply.github.com> Date: Thu, 4 May 2023 14:03:49 +0200 Subject: [PATCH] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index e35bdd5..636e2b8 100644 --- a/README.md +++ b/README.md @@ -35,7 +35,7 @@ fn about(req: *Request) Response { fn writeJson(req: *Request) Response { _=req; - Response.json("[1, 2, 3, 4]"); + return Response.json("[1, 2, 3, 4]"); } pub fn main() !void {