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>
This commit is contained in:
isaacjones99 2024-10-04 15:23:02 +01:00 committed by GitHub
parent bd393aedb8
commit 994051e086
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 8 additions and 8 deletions

View File

@ -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