From 9710403de149320e7047c3a341ffcba7aeb54f2b Mon Sep 17 00:00:00 2001 From: Patrick Date: Fri, 7 Nov 2014 09:37:17 +0100 Subject: [PATCH] missing spaces --- 9-templating.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/9-templating.md b/9-templating.md index 4c05168..29f143c 100644 --- a/9-templating.md +++ b/9-templating.md @@ -120,7 +120,7 @@ To make this change we need to pass an options array to the `Mustache_Engine` co ```php $injector->define('Mustache_Engine', [ ':options' => [ - 'loader' => new Mustache_Loader_FilesystemLoader(dirname(__DIR__).'/templates'), + 'loader' => new Mustache_Loader_FilesystemLoader(dirname(__DIR__) . '/templates'), ], ]); ```