From 957eb5f41b0a536cea5760bc4f5bd8be78d06c4e Mon Sep 17 00:00:00 2001 From: Javier Cicchelli Date: Tue, 4 Mar 2025 23:16:41 +0100 Subject: [PATCH] Documented the Pathable protocol in the library target. --- Library/Sources/Internal/Protocols/Pathable.swift | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Library/Sources/Internal/Protocols/Pathable.swift b/Library/Sources/Internal/Protocols/Pathable.swift index ba37ef1..6c09f35 100644 --- a/Library/Sources/Internal/Protocols/Pathable.swift +++ b/Library/Sources/Internal/Protocols/Pathable.swift @@ -1,7 +1,9 @@ +/// A type that can provide a relative path representation. protocol Pathable { // MARK: Properties + /// A read-only relative path representation. var path: String { get } }