From e83edf7e944d1c4de014ec897fd52747e368ce46 Mon Sep 17 00:00:00 2001 From: Sebastian Kalicki Date: Thu, 9 May 2019 11:28:11 +0200 Subject: [PATCH] Update 00_Configuration.md --- .../en/02_Developer_Guides/04_Configuration/00_Configuration.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/en/02_Developer_Guides/04_Configuration/00_Configuration.md b/docs/en/02_Developer_Guides/04_Configuration/00_Configuration.md index 2fe1e29f4..6eba335e3 100644 --- a/docs/en/02_Developer_Guides/04_Configuration/00_Configuration.md +++ b/docs/en/02_Developer_Guides/04_Configuration/00_Configuration.md @@ -57,7 +57,7 @@ $config = Config::inst()->get('MyClass', 'property'); Or through the `config()` method on the class. ```php -$config = $this->config()->get('property')'; +$config = $this->config()->get('property'); ``` You may need to apply the [Configurable](api:SilverStripe\Core\Config\Configurable) trait in order to access the `config()` method.