We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f7ca481 commit a4fdb70Copy full SHA for a4fdb70
1 file changed
docs/rules/prefer-arrow-callback.md
@@ -86,7 +86,7 @@ foo(function() { this.a; });
86
87
foo(function() { (() => this); });
88
89
-someArray.map(function(itm) { return this.doSomething(itm); }, someObject);
+someArray.map(function(item) { return this.doSomething(item); }, someObject);
90
```
91
92
## When Not To Use It
0 commit comments