Skip to content

Commit

Permalink
Fix span start typo
Browse files Browse the repository at this point in the history
  • Loading branch information
martin308 authored Oct 9, 2024
1 parent b3a087c commit f315b6e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion content/en/docs/languages/swift/instrumentation.md
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ operation. Spans are the building blocks of Traces. To create a span use the
span builder associated with the tracer:

```swift
let span = let builder = tracer.spanBuilder(spanName: "\(name)").startSpan()
let span = tracer.spanBuilder(spanName: "\(name)").startSpan()
...
span.end()
```
Expand Down

0 comments on commit f315b6e

Please sign in to comment.