diff --git a/docs/rules/forbid-dom-props.md b/docs/rules/forbid-dom-props.md index ef687c72ed..15a1229324 100644 --- a/docs/rules/forbid-dom-props.md +++ b/docs/rules/forbid-dom-props.md @@ -44,12 +44,12 @@ Examples of **correct** code for this rule: An array of strings, with the names of props that are forbidden. The default value of this option `[]`. Each array element can either be a string with the property name or object specifying the property name, an optional -custom message, and a DOM nodes blacklist(e.g. `
`): +custom message, and a DOM nodes disallowed list (e.g. `
`): ```js { "propName": "someProp", - "disallowedFor": [DOMNode, AnotherDOMNode], + "disallowedFor": ["DOMNode", "AnotherDOMNode"], "message": "Avoid using someProp" } ```