From 97ae3c8e97fc12e3dcf16a55a125b6b98d9f385e Mon Sep 17 00:00:00 2001 From: Jonny Eom Date: Thu, 4 Nov 2021 13:45:28 -0400 Subject: [PATCH] Fix emphasis on compiler to bold styling --- doc/internals.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/internals.rst b/doc/internals.rst index de4fb9e9af..8479b3b04f 100644 --- a/doc/internals.rst +++ b/doc/internals.rst @@ -20,7 +20,7 @@ The rendering of a Twig template can be summarized into four key steps: * Then, the **parser** converts the token stream into a meaningful tree of nodes (the Abstract Syntax Tree); - * Finally, the *compiler* transforms the AST into PHP code. + * Finally, the **compiler** transforms the AST into PHP code. * **Evaluate** the template: It means calling the ``display()`` method of the compiled template and passing it the context.