From fbfac78fbd85cae2cfe102590f18edbd560d52c8 Mon Sep 17 00:00:00 2001 From: JakeFr Date: Mon, 13 Jan 2020 08:58:15 +0100 Subject: [PATCH] Syntax error in doc This code sample in advanced.rst is not highlighted in php because the second semicolon is missing --- doc/advanced.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/advanced.rst b/doc/advanced.rst index b9c7829e96..2b0053b6ef 100644 --- a/doc/advanced.rst +++ b/doc/advanced.rst @@ -660,7 +660,7 @@ An extension is a class that implements the following interface:: To keep your extension class clean and lean, inherit from the built-in ``\Twig\Extension\AbstractExtension`` class instead of implementing the interface as it provides -empty implementations for all methods: +empty implementations for all methods:: class Project_Twig_Extension extends \Twig\Extension\AbstractExtension {