From 428c254b5a29cf4271b596e47783063e276ee3ae Mon Sep 17 00:00:00 2001 From: Vasyl Zuziak Date: Sat, 18 Jul 2026 10:41:29 +0200 Subject: [PATCH] fix: address typo in 'key concept' page --- docs/key-concept.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/key-concept.md b/docs/key-concept.md index 40a3f66c..8729a17c 100644 --- a/docs/key-concept.md +++ b/docs/key-concept.md @@ -77,7 +77,7 @@ In this example, the `isSignIn` check will only apply to `profile` but not `app` **Elysia isolates lifecycle by default** unless explicitly stated. This is similar to **export** in JavaScript, where you need to export the function to make it available outside the module. -To **"export"** the lifecycle to other instances, you must add specify the scope. +To **"export"** the lifecycle to other instances, you must specify the scope. ```ts import { Elysia } from 'elysia'