Skip to content

Commit e03cddf

Browse files
committed
format fix
1 parent 9b4ea63 commit e03cddf

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Sources/Instrumentation/Instrument.swift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ import ServiceContextModule
1919
/// The assocaited type, `Carrier`, is a service request such as an HTTP request,
2020
/// that has string values that can be extracted to provide information for a tracing span.
2121
///
22-
/// Typically the library adopting instrumentation, would provide an implementation of this type, since it is aware of its carrier type.
22+
/// Typically the library adopting instrumentation, would provide an implementation of this type, since it is aware of its carrier type.
2323
/// Which then can be combined with instrumentation or tracing implementations, which are not aware of the concrete carrier, and only provide an ``Instrument`` (or `Tracer`) which makes use of injector/extractor to operate on carrier values.
2424
public protocol Extractor: Sendable {
2525
/// The carrier to extract values from.
@@ -37,7 +37,7 @@ public protocol Extractor: Sendable {
3737
///
3838
/// The associated type, `Carrier`, is often a client or outgoing request into which values are inserted for tracing spans.
3939

40-
/// Typically the library adopting instrumentation, would provide an implementation of this type, since it is aware of its carrier type.
40+
/// Typically the library adopting instrumentation, would provide an implementation of this type, since it is aware of its carrier type.
4141
/// Which then can be combined with instrumentation or tracing implementations, which are not aware of the concrete carrier, and only provide an ``Instrument`` (or `Tracer`) which makes use of injector/extractor to operate on carrier values.
4242
public protocol Injector: Sendable {
4343
/// The carrier to inject values into.

0 commit comments

Comments
 (0)