Skip to content

Commit 6167d0d

Browse files
committed
Remove tech review markers.
1 parent 72322eb commit 6167d0d

File tree

2 files changed

+0
-3
lines changed

2 files changed

+0
-3
lines changed

stdlib/public/Concurrency/Task.swift

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -171,7 +171,6 @@ extension Task {
171171
/// In both cases, priority elevation helps you prevent a low-priority task
172172
/// blocking the execution of a high priority task,
173173
/// which is also known as *priority inversion*.
174-
/// ◊TR: Let's revisit the above
175174
public enum Priority: Int, Comparable {
176175
// Values must be same as defined by the internal `JobPriority`.
177176
case userInteractive = 0x21

stdlib/public/Concurrency/TaskGroup.swift

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -172,8 +172,6 @@ public func withTaskGroup<ChildTaskResult, GroupResult>(
172172
/// group.spawn { throw SomeError() }
173173
/// try group.next()
174174
/// }
175-
/// ◊TR: I revised the code listings above compared to what @ktoso suggested
176-
/// ◊TR: Are they still correct?
177175
///
178176
/// An individual task throws its error
179177
/// in the corresponding call to `Group.next()`,

0 commit comments

Comments
 (0)