diff --git a/site/docs/guide/concepts.mdx b/site/docs/guide/concepts.mdx index 50fd0cf..6f0caa1 100644 --- a/site/docs/guide/concepts.mdx +++ b/site/docs/guide/concepts.mdx @@ -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