From: Francisco Kurucz Date: Thu, 8 Aug 2024 08:19:10 +0000 (-0300) Subject: InternalDocs: Fix typo in link to instruction_sequence.c inside compiler docs (#122809) X-Git-Tag: v3.14.0a1~837 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=acf0d9eae673843e4fdd2e2661fe621b100ac78d;p=thirdparty%2FPython%2Fcpython.git InternalDocs: Fix typo in link to instruction_sequence.c inside compiler docs (#122809) --- diff --git a/InternalDocs/compiler.md b/InternalDocs/compiler.md index 52a3ab2f0a4a..ba31e16c3bbe 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/)