Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -219,7 +219,7 @@ trait SpanOps[F[_]] {
* A shortcut for:
* {{{
* val tracer: Tracer[F] = ???
* val ops: SpanOps.Aux[F, Span[F]] = tracer.spanBuilder("auto-span").build
* val ops: SpanOps[F] = tracer.spanBuilder("auto-span").build
* ops.use(_ => F.unit) <-> ops.use_
* }}}
*
Expand All @@ -233,7 +233,7 @@ trait SpanOps[F[_]] {
* A shortcut for:
* {{{
* val tracer: Tracer[F] = ???
* val ops: SpanOps.Aux[F, Span[F]] = tracer.spanBuilder("auto-span").build
* val ops: SpanOps[F] = tracer.spanBuilder("auto-span").build
* ops.use(_ => fa) <-> ops.surround(fa)
* }}}
*
Expand Down