Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions docs/blog/elysia-05.md
Original file line number Diff line number Diff line change
Expand Up @@ -177,7 +177,7 @@ type ContentType = |
| 'application/x-www-form-urlencoded'
```

You can find more detail at the [explicit body](/concept/explicit-body) page in concept.
You can find more detail at the [explicit body](/life-cycle/parse.html#explicit-body) page in concept.

### Numeric Type
We found that one of the redundant task our developers found using Elysia is to parse numeric string.
Expand Down Expand Up @@ -224,7 +224,7 @@ You can use numeric type on any property that support schema typing, including:

We hope that you will find this new Numeric type useful in your server.

You can find more detail at [numeric type](/concept/numeric) page in concept.
You can find more detail at [numeric type](/validation/elysia-type.html#numeric) page in concept.

With TypeBox 0.28, we are making Elysia type system we more complete, and we excited to see how it play out on your end.

Expand Down
2 changes: 1 addition & 1 deletion docs/essential/route.md
Original file line number Diff line number Diff line change
Expand Up @@ -188,4 +188,4 @@ When navigating to your web server, you should see the result as the following:
| / | POST | Route not found :\( |
| /hi | GET | Route not found :\( |

You can learn more about lifecycle and error handling in [Lifecycle Event](/essential/lifecycle-event) and [error handling](/concept/error-handling)
You can learn more about lifecycle and error handling in [Lifecycle Event](/essential/life-cycle) and [error handling](/life-cycle/on-error)
2 changes: 1 addition & 1 deletion docs/life-cycle/trace.md
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ You can trace lifecycle of the following:
- **error** - handle error thrown during processing request
- **response** - send a Response back to the client

Please refers to [lifecycle event](/concept/life-cycle) for more information:
Please refers to [lifecycle event](/essential/life-cycle) for more information:
![Elysia Life Cycle](/assets/lifecycle.webp)

## Children
Expand Down