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) ```