Changes required by docc

This commit is contained in:
Adam Fowler
2024-09-13 17:32:50 +01:00
parent 01b1f21ed6
commit b6736b2ce8

View File

@@ -28,8 +28,7 @@ public struct MustacheLibrary: Sendable {
/// ///
/// Each template is registered with the name of the file minus its extension. The search through /// 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`. /// 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 templates: Dictionary of mustache templates
/// - Parameter extension: Extension of files to look for
public init(templates: [String: MustacheTemplate]) { public init(templates: [String: MustacheTemplate]) {
self.templates = templates self.templates = templates
} }