From 61a6e6d2f3ddda83fc8244455c7483f71faba7f4 Mon Sep 17 00:00:00 2001 From: Juan Francisco Kurucz Date: Wed, 7 Aug 2024 21:24:10 -0300 Subject: [PATCH] Fix typo in link to instruction_sequence.c inside compiler docs --- InternalDocs/compiler.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/InternalDocs/compiler.md b/InternalDocs/compiler.md index 52a3ab2f0a4abd..ba31e16c3bbeaa 100644 --- a/InternalDocs/compiler.md +++ b/InternalDocs/compiler.md @@ -555,7 +555,7 @@ Important files * [Python/assemble.c](https://github.com/python/cpython/blob/main/Python/assemble.c): Constructs a code object from a sequence of pseudo instructions. - * [Python/instruction_sequence.c.c](https://github.com/python/cpython/blob/main/Python/instruction_sequence.c.c): + * [Python/instruction_sequence.c](https://github.com/python/cpython/blob/main/Python/instruction_sequence.c): A data structure representing a sequence of bytecode-like pseudo-instructions. * [Include/](https://github.com/python/cpython/blob/main/Include/)