From c26401e386be4536f045b49b98223a31f22d8225 Mon Sep 17 00:00:00 2001 From: Eyal Keren Date: Mon, 5 Feb 2024 14:18:30 +0200 Subject: [PATCH] Update main.w --- backend/main.w | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/backend/main.w b/backend/main.w index 2be2537..40dd829 100644 --- a/backend/main.w +++ b/backend/main.w @@ -33,7 +33,7 @@ api.post("/api/folders", inflight (req) => { } return { status: 500, - body: "missing body" + body: "Missing Body" }; }); @@ -63,4 +63,4 @@ api.put("/api/folders/:folder/:file", inflight (req) => { status: 200, body: Json.stringify({filename: file, content: content}) }; -}); \ No newline at end of file +});