From: Tomas R. Date: Sat, 5 Apr 2025 10:36:16 +0000 (+0200) Subject: Docs: Fix typo in `InternalDocs/jit.md` (#132119) X-Git-Tag: v3.14.0a7~56 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=bfc292abc10091a9298027596d107652ee4fe166;p=thirdparty%2FPython%2Fcpython.git Docs: Fix typo in `InternalDocs/jit.md` (#132119) --- diff --git a/InternalDocs/jit.md b/InternalDocs/jit.md index bd0c348af35c..c98ccb3ace8d 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