Skip to content
Merged
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
2 changes: 1 addition & 1 deletion site/docs/guide/concepts.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ title: Concepts | Guide | Lovit

## Entry function

Entry function is the function where you handle errors. For example, let's say you have an async function called `getPosts` that makes an API call to fetch posts from the backend. If you want to handle errors (like network issues or incorrect responses), you would typically add error handling, such as a `try-catch` block. In Lovit, an entry function is the function where you want to add error handling to it.
The Entry function is the function where you handle errors. For example, let's say you have an async function called `getPosts` that makes an API call to fetch posts from the backend. If you want to handle errors (like network issues or incorrect responses), you would typically add error handling, such as a `try-catch` block. In Lovit, an entry function is the function where you want to add error handling to it.

## Task

Expand Down
Loading