From b84c262b86d7240c3189ec10c9e23e3010f72d95 Mon Sep 17 00:00:00 2001 From: Senthil kumar Balasubramanian Date: Sun, 25 May 2025 17:31:27 +0530 Subject: [PATCH] Fix grammar at Entry Function description --- site/docs/guide/concepts.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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