diff --git a/platform-includes/getting-started-use/javascript.nestjs.mdx b/platform-includes/getting-started-use/javascript.nestjs.mdx index 47290b9b4415d..973f690fcc72b 100644 --- a/platform-includes/getting-started-use/javascript.nestjs.mdx +++ b/platform-includes/getting-started-use/javascript.nestjs.mdx @@ -14,7 +14,7 @@ async function bootstrap() { bootstrap(); ``` -Afterwards, add the SentryModule as a root module to your main module: +Afterwards, add the `SentryModule` as a root module to your main module: ```javascript {filename: app.module.ts} {2, 8} import { Module } from '@nestjs/common'; @@ -34,8 +34,8 @@ export class AppModule {} ``` In case you are using a global catch-all exception filter (which is either a filter registered with -app.useGlobalFilters() or a filter registered in your app module providers annotated with an empty @Catch() decorator), -add a @WithSentry() decorator to the catch() method of this global error filter. This decorator will report all +`app.useGlobalFilters()` or a filter registered in your app module providers annotated with an empty `@Catch()` decorator), +add a `@WithSentry()` decorator to the `catch()` method of this global error filter. This decorator will report all unexpected errors that are received by your global error filter to Sentry: ```javascript {2, 6}