Skip to content

Commit 1775c76

Browse files
committed
formatting
1 parent 8ed9307 commit 1775c76

File tree

1 file changed

+6
-9
lines changed

1 file changed

+6
-9
lines changed

Sources/Tracing/Tracer.swift

Lines changed: 6 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -53,8 +53,6 @@ public protocol Tracer: Instrument {
5353
}
5454

5555
extension Tracer {
56-
57-
5856
#if swift(>=5.3.0)
5957
/// Start a new ``Span`` with the given `Baggage` starting "now".
6058
///
@@ -94,12 +92,12 @@ extension Tracer {
9492
/// - file: The `file` where the span was started.
9593
/// - line: The file line where the span was started.
9694
public func startSpan(
97-
_ operationName: String,
98-
baggage: Baggage,
99-
ofKind kind: SpanKind = .internal,
100-
function: String = #function,
101-
file: String = #file,
102-
line: UInt = #line
95+
_ operationName: String,
96+
baggage: Baggage,
97+
ofKind kind: SpanKind = .internal,
98+
function: String = #function,
99+
file: String = #file,
100+
line: UInt = #line
103101
) -> Span {
104102
self.startSpan(
105103
operationName,
@@ -112,7 +110,6 @@ extension Tracer {
112110
)
113111
}
114112
#endif
115-
116113
}
117114

118115
// ==== ----------------------------------------------------------------------------------------------------------------

0 commit comments

Comments
 (0)