Skip to content

Commit 994051e

Browse files
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>
1 parent bd393ae commit 994051e

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

InternalDocs/compiler.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -324,14 +324,14 @@ basic block.
324324

325325
As an example, consider the following code snippet:
326326

327-
.. code-block:: Python
328-
329-
if x < 10:
330-
f1()
331-
f2()
332-
else:
333-
g()
334-
end()
327+
```python
328+
if x < 10:
329+
f1()
330+
f2()
331+
else:
332+
g()
333+
end()
334+
```
335335

336336
The ``x < 10`` guard is represented by its own basic block that
337337
compares ``x`` with ``10`` and then ends in a conditional jump based on

0 commit comments

Comments
 (0)