We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 103bd04 commit 8511317Copy full SHA for 8511317
stdlib/public/Concurrency/PartialAsyncTask.swift
@@ -153,9 +153,9 @@ public struct Job: Sendable {
153
/// and it appearing as 0 for _different_ jobs may lead to misunderstanding it as
154
/// being "the same 0 id job", we specifically print 0 (id not set) as nil.
155
if (id > 0) {
156
- return "\(Self.self)(id: \(id))"
+ return "Job(id: \(id))"
157
} else {
158
- return "\(Self.self)(id: nil)"
+ return "Job(id: nil)"
159
}
160
161
0 commit comments