Skip to content

Commit 17a96df

Browse files
jackharrhyfisker
authored andcommitted
Remove stray character (#474)
`Reflect.apply)()` `->` `Reflect.apply()`
1 parent d87d661 commit 17a96df

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/rules/prefer-reflect-apply.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Prefer `Reflect.apply()` over `Function#apply()`
22

3-
[`Reflect.apply)()`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Reflect/apply) is arguably less verbose and easier to understand. In addition, when you accept arbitrary methods, it's not safe to assume `.apply()` exists or is not overridden.
3+
[`Reflect.apply()`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Reflect/apply) is arguably less verbose and easier to understand. In addition, when you accept arbitrary methods, it's not safe to assume `.apply()` exists or is not overridden.
44

55
This rule is fixable.
66

0 commit comments

Comments
 (0)