From 5d84de65321a6649fe2dcfc4f1db5a670ef2b5f3 Mon Sep 17 00:00:00 2001 From: Moritz Lang <16192401+slashmo@users.noreply.github.com> Date: Tue, 14 Jan 2025 13:32:29 +0100 Subject: [PATCH] Update activeSpan documentation comment --- Sources/Tracing/TracerProtocol.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Sources/Tracing/TracerProtocol.swift b/Sources/Tracing/TracerProtocol.swift index ea4c334..e034d25 100644 --- a/Sources/Tracing/TracerProtocol.swift +++ b/Sources/Tracing/TracerProtocol.swift @@ -60,7 +60,7 @@ public protocol Tracer: LegacyTracer { line: UInt ) -> Self.Span - /// Retrieve the recording span for the given `ServiceContext`. + /// Retrieve the active span for the given `ServiceContext`. /// /// - Note: This API does not enable look up of already finished spans. /// It was added retroactively with a default implementation returning `nil` and therefore isn't guaranteed to be implemented by all `Tracer`s.