From: isaacjones99 <82098317+isaacjones99@users.noreply.github.com> Date: Fri, 4 Oct 2024 14:23:02 +0000 (+0100) Subject: gh-124962: Convert leftover rst to markup in `InternalDocs/compiler.md` (#124971) X-Git-Tag: v3.14.0a1~185 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=994051e086b9ce624a3b16750d6f692bc4a3b07b;p=thirdparty%2FPython%2Fcpython.git gh-124962: Convert leftover rst to markup in `InternalDocs/compiler.md` (#124971) Co-authored-by: Bénédikt Tran <10796600+picnixz@users.noreply.github.com> --- diff --git a/InternalDocs/compiler.md b/InternalDocs/compiler.md index ba31e16c3bbe..f27e73b27451 100644 --- a/InternalDocs/compiler.md +++ b/InternalDocs/compiler.md @@ -324,14 +324,14 @@ basic block. As an example, consider the following code snippet: -.. code-block:: Python - - if x < 10: - f1() - f2() - else: - g() - end() +```python +if x < 10: + f1() + f2() +else: + g() +end() +``` The ``x < 10`` guard is represented by its own basic block that compares ``x`` with ``10`` and then ends in a conditional jump based on