Skip to content

Commit c88708e

Browse files
authored
docs: replace quote with backtick in description of for-direction (#19199)
* docs: replace quote with backtick in `description` of `for-direction` * wip
1 parent a76f233 commit c88708e

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

docs/src/_data/rules_meta.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -352,7 +352,7 @@
352352
"for-direction": {
353353
"type": "problem",
354354
"docs": {
355-
"description": "Enforce \"for\" loop update clause moving the counter in the right direction",
355+
"description": "Enforce `for` loop update clause moving the counter in the right direction",
356356
"recommended": true,
357357
"url": "https://eslint.org/docs/latest/rules/for-direction"
358358
},

lib/rules/for-direction.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* @fileoverview enforce "for" loop update clause moving the counter in the right direction.(for-direction)
2+
* @fileoverview enforce `for` loop update clause moving the counter in the right direction.(for-direction)
33
* @author Aladdin-ADD<[email protected]>
44
*/
55

@@ -21,7 +21,7 @@ module.exports = {
2121
type: "problem",
2222

2323
docs: {
24-
description: "Enforce \"for\" loop update clause moving the counter in the right direction",
24+
description: "Enforce `for` loop update clause moving the counter in the right direction",
2525
recommended: true,
2626
url: "https://eslint.org/docs/latest/rules/for-direction"
2727
},

0 commit comments

Comments
 (0)