Skip to content

Commit 27d62ba

Browse files
authored
Fix == for Span(s) type to Self (#264)
1 parent e3644ce commit 27d62ba

File tree

1 file changed

+1
-1
lines changed
  • SplunkRumWorkspace/SplunkRum/SplunkRum/OpenTelemetry/OpenTelemetryApi/Trace

1 file changed

+1
-1
lines changed

SplunkRumWorkspace/SplunkRum/SplunkRum/OpenTelemetry/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)