diff --git a/docs/rules/prefer-arrow-callback.md b/docs/rules/prefer-arrow-callback.md index 95ef16b3a55..c9132122ea5 100644 --- a/docs/rules/prefer-arrow-callback.md +++ b/docs/rules/prefer-arrow-callback.md @@ -76,7 +76,7 @@ By default `{ "allowUnboundThis": true }`, this `boolean` option allows function When set to `false` this option prohibits the use of function expressions as callbacks or function arguments entirely, without exception. -`{ "allowNamedFunctions": false }` **will** flag the following examples: +`{ "allowUnboundThis": false }` **will** flag the following examples: ```js /* eslint prefer-arrow-callback: [ "error", { "allowUnboundThis": false } ] */