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 +});