From 862a2fb6ed8766138b95ef44056bebb554b0fb0e Mon Sep 17 00:00:00 2001
From: Willem-Jaap <67187467+Willem-Jaap@users.noreply.github.com>
Date: Tue, 12 May 2026 14:28:43 +0200
Subject: [PATCH 1/2] fix: fix typo in jit compiler docs
---
docs/internal/jit-compiler.md | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/docs/internal/jit-compiler.md b/docs/internal/jit-compiler.md
index 64ed9763..c00c1b90 100644
--- a/docs/internal/jit-compiler.md
+++ b/docs/internal/jit-compiler.md
@@ -27,7 +27,7 @@ Elysia is fast and will likely remain *one of the fastest web frameworks for Jav
-Elysia speed is not only acheived by optimization for specific runtime eg. Bun native features like `Bun.serve.routes`. But also the way Elysia handles route registration and request handling.
+Elysia speed is not only achieved by optimization for specific runtime eg. Bun native features like `Bun.serve.routes`. But also the way Elysia handles route registration and request handling.
Elysia has an **JIT "compiler"** embedded within its core since [Elysia 0.4](/blog/elysia-04) (30 Mar 2023) at (*src/compose.ts*) using `new Function(...)` or also known as `eval(...)`.
From 6728e05156dad834ee25525a10e4264e5cad2e89 Mon Sep 17 00:00:00 2001
From: Willem-Jaap <67187467+Willem-Jaap@users.noreply.github.com>
Date: Tue, 12 May 2026 14:51:40 +0200
Subject: [PATCH 2/2] update grammar
Co-authored-by: coderabbitai[bot] <136622811+coderabbitai[bot]@users.noreply.github.com>
---
docs/internal/jit-compiler.md | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/docs/internal/jit-compiler.md b/docs/internal/jit-compiler.md
index c00c1b90..f3752da8 100644
--- a/docs/internal/jit-compiler.md
+++ b/docs/internal/jit-compiler.md
@@ -27,7 +27,7 @@ Elysia is fast and will likely remain *one of the fastest web frameworks for Jav
-Elysia speed is not only achieved by optimization for specific runtime eg. Bun native features like `Bun.serve.routes`. But also the way Elysia handles route registration and request handling.
+Elysia speed is not only achieved by optimization for specific runtime eg. Bun native features like `Bun.serve.routes`, but also by the way Elysia handles route registration and request handling.
Elysia has an **JIT "compiler"** embedded within its core since [Elysia 0.4](/blog/elysia-04) (30 Mar 2023) at (*src/compose.ts*) using `new Function(...)` or also known as `eval(...)`.