diff --git a/docs/rules/no-magic-array-flat-depth.md b/docs/rules/no-magic-array-flat-depth.md index fe7b304654..cc3af48aeb 100644 --- a/docs/rules/no-magic-array-flat-depth.md +++ b/docs/rules/no-magic-array-flat-depth.md @@ -5,7 +5,7 @@ -When calling [`Array#flat(depth)`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/flat) with depth, normally the depth argument should be `1` or `Infinity`(`Number.POSITIVE_INFINITY`), otherwise it should be meaningful variable name or explained with a comment. +When calling [`Array#flat(depth)`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/flat) with depth, normally the depth argument should be `1` or `Infinity`(`Number.POSITIVE_INFINITY`), otherwise it should be a meaningful variable name or explained with a comment. ## Fail