Skip to content

Commit

Permalink
Docs: “the function actually use”: use -> uses (#11380)
Browse files Browse the repository at this point in the history
  • Loading branch information
PoziWorld authored and nzakas committed Feb 12, 2019
1 parent 5a71bc9 commit 1e56897
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/rules/no-extra-bind.md
@@ -1,6 +1,6 @@
# Disallow unnecessary function binding (no-extra-bind)

The `bind()` method is used to create functions with specific `this` values and, optionally, binds arguments to specific values. When used to specify the value of `this`, it's important that the function actually use `this` in its function body. For example:
The `bind()` method is used to create functions with specific `this` values and, optionally, binds arguments to specific values. When used to specify the value of `this`, it's important that the function actually uses `this` in its function body. For example:

```js
var boundGetName = (function getName() {
Expand Down

0 comments on commit 1e56897

Please sign in to comment.