Skip to content

Commit c24bae7

Browse files
Fixup Observations availability from 9999 to 6.2 (#82198)
1 parent 3b9ec94 commit c24bae7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

stdlib/public/Observation/Sources/Observation/Observations.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ func withIsolatedTaskCancellationHandler<T: Sendable>(
4141
/// `Observations` conforms to `AsyncSequence`, providing a intutive and safe mechanism to track changes to
4242
/// types that are marked as `@Observable` by using Swift Concurrency to indicate transactional boundaries
4343
/// starting from the willSet of the first mutation to the next suspension point of the safe access.
44-
@available(SwiftStdlib 9999, *)
44+
@available(SwiftStdlib 6.2, *)
4545
public struct Observations<Element: Sendable, Failure: Error>: AsyncSequence, Sendable {
4646
public enum Iteration: Sendable {
4747
case next(Element)

0 commit comments

Comments
 (0)