Skip to content

Commit 61f42ca

Browse files
committed
docs: remove extra quote in status 418 example
1 parent eeac88d commit 61f42ca

File tree

1 file changed

+1
-1
lines changed
  • docs/tutorial/getting-started/status-and-headers

1 file changed

+1
-1
lines changed

docs/tutorial/getting-started/status-and-headers/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ You can also return a status code by return your response in a `status` function
4848
import { Elysia } from 'elysia'
4949

5050
new Elysia()
51-
.get('/', ({ status }) => status(418, "I'm a teapot'"))
51+
.get('/', ({ status }) => status(418, "I'm a teapot"))
5252
.listen(3000)
5353
```
5454

0 commit comments

Comments
 (0)