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 } }