Skip to content

Commit e0a2203

Browse files
authored
docs: add missing backticks to no-sequences (#19233)
1 parent 4cc4881 commit e0a2203

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

docs/src/rules/no-sequences.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -160,7 +160,7 @@ for (i = 0, j = 10; i < j; i++, j--);
160160
## When Not To Use It
161161

162162
Disable this rule if sequence expressions with the comma operator are acceptable.
163-
Another case is where you might want to report all usages of the comma operator, even in a for loop. You can achieve this using rule `no-restricted-syntax`:
163+
Another case is where you might want to report all usages of the comma operator, even in a `for` loop. You can achieve this using rule `no-restricted-syntax`:
164164

165165
```js
166166
{

0 commit comments

Comments
 (0)