Skip to content

Commit d99f238

Browse files
committed
styling
1 parent 48e75a2 commit d99f238

File tree

1 file changed

+10
-5
lines changed
  • docs/platforms/javascript/common

1 file changed

+10
-5
lines changed

docs/platforms/javascript/common/apis.mdx

Lines changed: 10 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,8 @@ If you use a bundler, using e.g. `const { replayIntegration } = await import('@s
135135
<PlatformLink to="/enriching-events/scopes/">Scopes</PlatformLink> for more
136136
information.
137137

138-
Note that in most cases you should not use this API, but instead use `withScope` to generate and access a local scope. There are no guarantees about the consistency of `getCurrentScope` across different parts of your application, as scope forking may happen under the hood at various points.
138+
Note that in most cases you should not use this API, but instead use `withScope` to generate and access a local scope. There are no guarantees about the consistency of `getCurrentScope` across different parts of your application, as scope forking may happen under the hood at various points.
139+
139140
</SdkApi>
140141

141142
<SdkApi
@@ -159,8 +160,8 @@ If you use a bundler, using e.g. `const { replayIntegration } = await import('@s
159160
signature="function withIsolationScope(callback: (scope: Scope) => void): void"
160161
>
161162
Forks the current isolation scope and calls the callback with the forked
162-
scope. See <PlatformLink to="/enriching-events/scopes/">Scopes</PlatformLink> for
163-
more information.
163+
scope. See <PlatformLink to="/enriching-events/scopes/">Scopes</PlatformLink>{" "}
164+
for more information.
164165
</SdkApi>
165166

166167
<SdkApi name="getGlobalScope" signature="function getGlobalScope(): Scope">
@@ -620,8 +621,12 @@ See <PlatformLink to="/tracing/instrumentation/">Tracing Instrumentation</Platfo
620621
`browserTracingIntegration` has not been enabled.
621622
</SdkApi>
622623

623-
<SdkApi name="withActiveSpan" signature="function withActiveSpan<T>(span: Span | null, callback: () => T): T">
624-
Runs the provided callback with the given span as the active span. If `null` is provided, the callback will have no active span.
624+
<SdkApi
625+
name="withActiveSpan"
626+
signature="function withActiveSpan<T>(span: Span | null, callback: () => T): T"
627+
>
628+
Runs the provided callback with the given span as the active span. If `null`
629+
is provided, the callback will have no active span.
625630
</SdkApi>
626631

627632
## Tracing Utilities

0 commit comments

Comments
 (0)