From 1e56897db3e254e0aef6d2fe3274157fc379c79e Mon Sep 17 00:00:00 2001 From: PoziWorld <5961162+PoziWorld@users.noreply.github.com> Date: Tue, 12 Feb 2019 09:25:06 -0800 Subject: [PATCH] =?UTF-8?q?Docs:=20=E2=80=9Cthe=20function=20actually=20us?= =?UTF-8?q?e=E2=80=9D:=20use=20->=20uses=20(#11380)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- docs/rules/no-extra-bind.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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() {