Skip to content

Commit 9faff77

Browse files
committed
fix(format): remove extra backticks
1 parent bb0bf4a commit 9faff77

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

content/fundamentals/provider-scopes.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@ export class HelloService {
119119
console.log(`${this.parentClass?.constructor?.name}: ${message}`);
120120
}
121121
}
122-
````
122+
```
123123

124124
```typescript
125125
import { Injectable } from '@nestjs/common';
@@ -135,7 +135,7 @@ export class AppService {
135135
return 'Hello world!';
136136
}
137137
}
138-
````
138+
```
139139

140140
In the example above when `AppService.getRoot` is called, `'AppService: My name is getRoot'` will be logged to the console.
141141

0 commit comments

Comments
 (0)