Skip to content

Commit f7c4bd7

Browse files
committed
fix prettier
1 parent 6aa5fb1 commit f7c4bd7

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

docs/creating-a-new-sdk.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -66,8 +66,8 @@ A purely server SDK generally should cover the following things:
6666
### 2a. Error Monitoring
6767

6868
We have global error handlers out of the box. However, in many frameworks there are ways for users to capture errors
69-
too, which may lead to them not bubbling up to our global handlers. Generally, the goal is that all errors are captured by
70-
Sentry.
69+
too, which may lead to them not bubbling up to our global handlers. Generally, the goal is that all errors are captured
70+
by Sentry.
7171

7272
Either we should use some hook (e.g. `app.on('error')`) to capture exceptions, or provide composables (e.g.
7373
`setupFastifyErrorHandler(app)`) that user can call.
@@ -93,8 +93,8 @@ Some of the following concepts may be relevant to your SDK:
9393

9494
#### Middleware Tracking
9595

96-
Additionally, Node SDKs may also do **Middleware Tracking**. If possible, we may want to instrument middlewares, and create
97-
spans for them. These are stretch goals, though, and do not need to be part of an MVP.
96+
Additionally, Node SDKs may also do **Middleware Tracking**. If possible, we may want to instrument middlewares, and
97+
create spans for them. These are stretch goals, though, and do not need to be part of an MVP.
9898

9999
### 2c. OPTIONAL: Additional features
100100

0 commit comments

Comments
 (0)