diff --git a/docs/rules/no-extra-bind.md b/docs/rules/no-extra-bind.md index 0294d3e5c4a..6d6bf138d33 100644 --- a/docs/rules/no-extra-bind.md +++ b/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() {