Skip to content

Commit 2a39778

Browse files
authored
Merge pull request #317 from foofybuster/patch-1
Fixed: change words in docs/essential/route.md
2 parents e00f908 + b6197e6 commit 2a39778

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docs/essential/route.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,8 +49,8 @@ We can define a route by calling a **method named after HTTP verbs**, passing a
4949
import { Elysia } from 'elysia'
5050

5151
new Elysia()
52-
.get('/', () => 'Landing')
53-
.get('/hello', () => 'Hi')
52+
.get('/', () => 'hello')
53+
.get('/hi', () => 'hi')
5454
.listen(3000)
5555
```
5656

0 commit comments

Comments
 (0)