@@ -102,7 +102,7 @@ extension UnownedJob: CustomStringConvertible {
102
102
@available ( SwiftStdlib 5 . 9 , * )
103
103
public var description : String {
104
104
let id = _getJobTaskId ( self )
105
- /// Tasks are always assigned an unique ID, however some jobs may not have it set,
105
+ /// Tasks are always assigned a unique ID, however some jobs may not have it set,
106
106
/// and it appearing as 0 for _different_ jobs may lead to misunderstanding it as
107
107
/// being "the same 0 id job", we specifically print 0 (id not set) as nil.
108
108
if ( id > 0 ) {
@@ -151,7 +151,7 @@ public struct Job: Sendable {
151
151
@_unavailableInEmbedded
152
152
public var description : String {
153
153
let id = _getJobTaskId ( UnownedJob ( context: self . context) )
154
- /// Tasks are always assigned an unique ID, however some jobs may not have it set,
154
+ /// Tasks are always assigned a unique ID, however some jobs may not have it set,
155
155
/// and it appearing as 0 for _different_ jobs may lead to misunderstanding it as
156
156
/// being "the same 0 id job", we specifically print 0 (id not set) as nil.
157
157
if ( id > 0 ) {
@@ -220,7 +220,7 @@ public struct ExecutorJob: Sendable {
220
220
@_unavailableInEmbedded
221
221
public var description : String {
222
222
let id = _getJobTaskId ( UnownedJob ( context: self . context) )
223
- /// Tasks are always assigned an unique ID, however some jobs may not have it set,
223
+ /// Tasks are always assigned a unique ID, however some jobs may not have it set,
224
224
/// and it appearing as 0 for _different_ jobs may lead to misunderstanding it as
225
225
/// being "the same 0 id job", we specifically print 0 (id not set) as nil.
226
226
if ( id > 0 ) {
0 commit comments