From b6736b2ce838f86d4a7a000eab601d30d5162613 Mon Sep 17 00:00:00 2001 From: Adam Fowler Date: Fri, 13 Sep 2024 17:32:50 +0100 Subject: [PATCH] Changes required by docc --- Sources/Mustache/Library.swift | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Sources/Mustache/Library.swift b/Sources/Mustache/Library.swift index 0cdd408..c73cf2e 100644 --- a/Sources/Mustache/Library.swift +++ b/Sources/Mustache/Library.swift @@ -28,8 +28,7 @@ public struct MustacheLibrary: Sendable { /// /// Each template is registered with the name of the file minus its extension. The search through /// the folder is recursive and templates in subfolders will be registered with the name `subfolder/template`. - /// - Parameter directory: Directory to look for mustache templates - /// - Parameter extension: Extension of files to look for + /// - Parameter templates: Dictionary of mustache templates public init(templates: [String: MustacheTemplate]) { self.templates = templates }