From d1f42b3ab10deeac71f2536759facc269f3a2e09 Mon Sep 17 00:00:00 2001 From: Tomas Roun Date: Sat, 5 Apr 2025 12:10:54 +0200 Subject: [PATCH] Fix typo in jit.md --- InternalDocs/jit.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/InternalDocs/jit.md b/InternalDocs/jit.md index bd0c348af35c34..c98ccb3ace8d9e 100644 --- a/InternalDocs/jit.md +++ b/InternalDocs/jit.md @@ -66,7 +66,7 @@ When invoked, the executor jumps to the `tier2_dispatch:` label in executes the micro-ops. The body of this loop is a switch statement over the uops IDs, resembling the one used in the adaptive interpreter. -The swtich implementing the uops is in [`Python/executor_cases.c.h`](../Python/executor_cases.c.h), +The switch implementing the uops is in [`Python/executor_cases.c.h`](../Python/executor_cases.c.h), which is generated by the build script [`Tools/cases_generator/tier2_generator.py`](../Tools/cases_generator/tier2_generator.py) from the bytecode definitions in