From 0e97b4b6a92632ae1737276c08cad37993eb7c53 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 fa2265ea58..6db8f54a6b 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.