Skip to content

Commit 9b68bee

Browse files
Small typo fix (#695)
* Fix typo in handler documentation * Fix typo in response validation documentation
1 parent 4348b50 commit 9b68bee

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

docs/tutorial/getting-started/handler-and-context/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ new Elysia()
4141
.listen(3000)
4242
```
4343

44-
A handler can also be an literal value, see <DocLink href="/essential/handler">Handler</DocLink>
44+
A handler can also be a literal value, see <DocLink href="/essential/handler">Handler</DocLink>
4545

4646
```ts
4747
import { Elysia } from 'elysia'

docs/tutorial/getting-started/validation/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ See <DocLink href="/essential/validation#schema-type">Schema Type</DocLink> for
9696
## Response Validation
9797
When you define a validation schema for `response`, Elysia will validate the response before sending it to the client, and type check the response for you.
9898

99-
You can also specified which status code to validate:
99+
You can also specify which status code to validate:
100100
```typescript
101101
import { Elysia, t } from 'elysia'
102102

0 commit comments

Comments
 (0)