From 61f42ca92585dde9588fa905ea3b8e7296e61a64 Mon Sep 17 00:00:00 2001 From: Lo Date: Tue, 14 Oct 2025 01:00:23 +0800 Subject: [PATCH] docs: remove extra quote in status 418 example --- docs/tutorial/getting-started/status-and-headers/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/tutorial/getting-started/status-and-headers/index.md b/docs/tutorial/getting-started/status-and-headers/index.md index fb6c5c25..a5df6409 100644 --- a/docs/tutorial/getting-started/status-and-headers/index.md +++ b/docs/tutorial/getting-started/status-and-headers/index.md @@ -48,7 +48,7 @@ You can also return a status code by return your response in a `status` function import { Elysia } from 'elysia' new Elysia() - .get('/', ({ status }) => status(418, "I'm a teapot'")) + .get('/', ({ status }) => status(418, "I'm a teapot")) .listen(3000) ```