Skip to content

Commit 6a9fb15

Browse files
authored
Docs: fix rulename in example. (#28)
1 parent a090610 commit 6a9fb15

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docs/rules/no-unused-placeholders.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ Reports when a context.report call contains a data property that does not have a
99
Examples of **incorrect** code for this rule:
1010

1111
```js
12-
/*eslint eslint-plugin/no-missing-placeholders: error*/
12+
/*eslint eslint-plugin/no-unused-placeholders: error*/
1313

1414
module.exports = {
1515
create(context) {
@@ -28,7 +28,7 @@ module.exports = {
2828
Examples of **correct** code for this rule:
2929

3030
```js
31-
/*eslint eslint-plugin/no-missing-placeholders: error*/
31+
/*eslint eslint-plugin/no-unused-placeholders: error*/
3232

3333
module.exports = {
3434
create(context) {

0 commit comments

Comments
 (0)