diff --git a/Sources/Time/10-Relations/Relations.swift b/Sources/Time/10-Relations/Relations.swift index f042192..c43cd5f 100644 --- a/Sources/Time/10-Relations/Relations.swift +++ b/Sources/Time/10-Relations/Relations.swift @@ -12,7 +12,7 @@ import Foundation /// There are 13 possible ways in which two values may be related to each other. /// This set of possibilities is entirely encapsulated by the `Relation` enum. /// -/// - See Also: [Allen's Interval Algebra](https://en.wikipedia.org/wiki/Allen%27s_interval_algebra) +/// - SeeAlso: [Allen's Interval Algebra](https://en.wikipedia.org/wiki/Allen%27s_interval_algebra) public enum Relation: Hashable, CaseIterable { internal static let meetings: Set = [.meets, .isMetBy, .starts, .isStartedBy, .finishes, .isFinishedBy] diff --git a/Sources/Time/3-RegionalClock/RegionalClock+Chimes.swift b/Sources/Time/3-RegionalClock/RegionalClock+Chimes.swift index d176830..ddaf44e 100644 --- a/Sources/Time/3-RegionalClock/RegionalClock+Chimes.swift +++ b/Sources/Time/3-RegionalClock/RegionalClock+Chimes.swift @@ -65,7 +65,7 @@ extension RegionalClock { /// Sets up a single chime (ex: "at 12:00 PM"). /// /// Useful, for example, when you want the `RegionalClock` to "tell me when it's 3:00 PM." - /// If the time has already passed, then the publisher completes immediately without sending a value. + /// If the time has already passed, then the `ClockChime` completes immediately without sending a value. /// /// - Parameter time: The time at which the chime should occur. /// @@ -139,7 +139,7 @@ public struct ClockChime { /// Create a chime that emits at most one value at the specified time. /// - Parameters: /// - clock: The `RegionalClock` to use for producing calendar values. - /// - time: The time at which to emit the value. If this value is in the past, then the publisher immediately completes. + /// - time: The time at which to emit the value. If this value is in the past, then the `ClockChime` emits no values. public init(clock: any RegionalClock, at time: Fixed) { let current = clock.current(U.self) var values = Array>()