From 85c5cef9c309d11c017fd107c02c02807eb4b5cd Mon Sep 17 00:00:00 2001 From: Drackin Best <78258229+Drackin@users.noreply.github.com> Date: Sun, 5 Apr 2026 12:26:18 +0300 Subject: [PATCH] fix: typo in error handling documentation --- docs/1.guide/1.basics/6.error.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/1.guide/1.basics/6.error.md b/docs/1.guide/1.basics/6.error.md index cb35d2597..8bc22d4a3 100644 --- a/docs/1.guide/1.basics/6.error.md +++ b/docs/1.guide/1.basics/6.error.md @@ -22,7 +22,7 @@ app.get("/error", (event) => { // Using HTTPError.status(code) throw HTTPError.status(400, "Bad Request"); - // Using single pbject + // Using single object throw new HTTPError({ status: 400, statusText: "Bad Request",