Skip to content

Commit 3062f14

Browse files
committed
Do not mention DarwinBoolean
1 parent b202a8d commit 3062f14

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Sources/Foundation/RunLoop.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -316,7 +316,7 @@ extension RunLoop {
316316
let me = Unmanaged<_Source>.fromOpaque(info!).takeUnretainedValue()
317317
return .passRetained(String(describing: me)._cfObject)
318318
},
319-
equal: { (infoA, infoB) -> DarwinBoolean in
319+
equal: { (infoA, infoB) in
320320
let a = Unmanaged<_Source>.fromOpaque(infoA!).takeUnretainedValue()
321321
let b = Unmanaged<_Source>.fromOpaque(infoB!).takeUnretainedValue()
322322
return a == b ? true : false

0 commit comments

Comments
 (0)