diff --git a/docs/rules/no-caller.md b/docs/rules/no-caller.md index ff408688a8c..f5688df385e 100644 --- a/docs/rules/no-caller.md +++ b/docs/rules/no-caller.md @@ -10,7 +10,7 @@ function foo() { ## Rule Details -This rule is aimed at discouraging the use of deprecated and sub-optimal code, but disallowing the use of `arguments.caller` and `arguments.callee`. As such, it will warn when `arguments.caller` and `arguments.callee` are used. +This rule is aimed at discouraging the use of deprecated and sub-optimal code by disallowing the use of `arguments.caller` and `arguments.callee`. As such, it will warn when `arguments.caller` and `arguments.callee` are used. Examples of **incorrect** code for this rule: