diff --git a/Sources/Include.swift b/Sources/Include.swift index 1bccb22..560bb74 100644 --- a/Sources/Include.swift +++ b/Sources/Include.swift @@ -27,7 +27,7 @@ class IncludeNode : NodeType { let template = try context.environment.loadTemplate(name: templateName) - let subContext = includeContext.flatMap{ context[$0] as? [String: Any] } + let subContext = includeContext.flatMap { context[$0] as? [String: Any] } return try context.push(dictionary: subContext) { return try template.render(context) }