Skip to content

Commit 187c9d2

Browse files
fix: markdown formatting in code review examples
Updated markdown code blocks for example comments in the code review instructions.
1 parent 4f9e20b commit 187c9d2

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

instructions/code-review-generic.instructions.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -242,7 +242,7 @@ Explanation of the impact or reason for the suggestion.
242242
### Example Comments
243243

244244
#### Critical Issue
245-
```markdown
245+
````markdown
246246
**🔴 CRITICAL - Security: SQL Injection Vulnerability**
247247

248248
The query on line 45 concatenates user input directly into the SQL string,
@@ -290,10 +290,10 @@ test('should process full refund when order is cancelled', () => {
290290
expect(result.status).toBe('refunded');
291291
});
292292
```
293-
```
293+
````
294294

295295
#### Suggestion
296-
```markdown
296+
````markdown
297297
**🟢 SUGGESTION - Readability: Simplify nested conditionals**
298298

299299
The nested if statements on lines 30-40 make the logic hard to follow.
@@ -318,7 +318,7 @@ if (!user || !user.isActive || !user.hasPermission('write')) {
318318
}
319319
// do something
320320
```
321-
```
321+
````
322322

323323
## Review Checklist
324324

0 commit comments

Comments
 (0)