File tree Expand file tree Collapse file tree 5 files changed +6
-6
lines changed
Observation/Sources/Observation Expand file tree Collapse file tree 5 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -93,7 +93,7 @@ public protocol SchedulingExecutor: Executor {
9393 /// will not be executed before this time.
9494 /// - tolerance: The maximum additional delay permissible before the
9595 /// job is executed. `nil` means no limit.
96- /// - clock: The clock used for the delay..
96+ /// - clock: The clock used for the delay.
9797 @available ( StdlibDeploymentTarget 6 . 2 , * )
9898 func enqueue< C: Clock > ( _ job: consuming ExecutorJob ,
9999 at instant: C . Instant ,
Original file line number Diff line number Diff line change @@ -94,7 +94,7 @@ extension UnsafeCurrentTask {
9494/// The handler will only trigger if a priority escalation occurs while the
9595/// operation is in progress.
9696///
97- /// If multiple task escalation handlers are nester they will all be triggered.
97+ /// If multiple task escalation handlers are nested they will all be triggered.
9898///
9999/// Task escalation propagates through structured concurrency child-tasks.
100100///
Original file line number Diff line number Diff line change 99//
1010//===----------------------------------------------------------------------===//
1111
12- // NOTE: this cant use Synchronization because it is deployed before that was
12+ // NOTE: this can't use Synchronization because it is deployed before that was
1313// introduced and availability wont let it be hidden behind an internal type.
1414// The Swift internal runtime locking cannot be used since that emits dependent
15- // symbols that are not provided by this library - so instead it has to re-implement
15+ // symbols that are not provided by this library - so instead it has to re-implement
1616// all of this on its own...
1717
1818#if canImport(Darwin.os.lock)
Original file line number Diff line number Diff line change @@ -217,7 +217,7 @@ public struct ObservationRegistrar: Sendable {
217217 ///
218218 /// You don't need to create an instance of
219219 /// ``Observation/ObservationRegistrar`` when using the
220- /// ``Observation/Observable()`` macro to indicate observably
220+ /// ``Observation/Observable()`` macro to indicate observability
221221 /// of a type.
222222 public init ( ) {
223223 }
Original file line number Diff line number Diff line change @@ -48,7 +48,7 @@ public struct ClassMetadata {
4848 └──────────────┴──────────────────────────────────────────────┘
4949
5050 If the highest bit (doNotFreeBit) is set, the behavior of dropping the last reference (release operation where
51- refcount ends up being 0) is altered to avoid calling free() on the object (deinit is still run). This is crutial for
51+ refcount ends up being 0) is altered to avoid calling free() on the object (deinit is still run). This is crucial for
5252 class instances that are promoted by the compiler from being heap-allocated to instead be located on the stack
5353 (see swift_initStackObject).
5454
You can’t perform that action at this time.
0 commit comments