Skip to content

Commit ed586cd

Browse files
Merge pull request PassiveLogic#1 from clackary/fix/span-self-arguments
fix: Update Span's == argument types to Self
2 parents 9baa7b6 + 83e13ca commit ed586cd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Sources/OpenTelemetryApi/Trace/Span.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ public extension Span {
7474
hasher.combine(context.spanId)
7575
}
7676

77-
static func == (lhs: Span, rhs: Span) -> Bool {
77+
static func == (lhs: Self, rhs: Self) -> Bool {
7878
return lhs.context.spanId == rhs.context.spanId
7979
}
8080
}

0 commit comments

Comments
 (0)