Skip to content

Commit

Permalink
fix(swift): add missing comma in Setup code example (#2175)
Browse files Browse the repository at this point in the history
  • Loading branch information
Amir Blum committed Jan 18, 2023
1 parent 9df30d5 commit 683d156
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion content/en/docs/instrumentation/swift/manual.md
Expand Up @@ -32,7 +32,7 @@ let otlpConfiguration = OtlpConfiguration(timeout: OtlpConfiguration.DefaultTime
let grpcChannel = ClientConnection.usingPlatformAppropriateTLS(for: MultiThreadedEventLoopGroup(numberOfThreads:1))
.connect(host: <collector host>, port: <collector port>)

let traceExporter = OtlpTraceExporter(channel: grpcChannel
let traceExporter = OtlpTraceExporter(channel: grpcChannel,
config: otlpConfiguration)

// build & register the Tracer Provider using the built otlp trace exporter
Expand Down

0 comments on commit 683d156

Please sign in to comment.