Documented the Pathable protocol in the library target.

This commit is contained in:
Javier Cicchelli 2025-03-04 23:16:41 +01:00
parent cef62262ed
commit 957eb5f41b

View File

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