summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--CHANGELOG.md2
-rw-r--r--README.md2
2 files changed, 2 insertions, 2 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index f90718d..2a8d962 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -14,7 +14,7 @@
# 2.1.1
-- added custom context binding to event callback (default is the element the event is binded to)
+- added custom context binding to event callback (default is the element the event is bound to)
# 2.1.0 (20/09/2015)
diff --git a/README.md b/README.md
index e3be5e8..6562fd4 100644
--- a/README.md
+++ b/README.md
@@ -2873,7 +2873,7 @@ var click = function() {
rect.on('click', click)
```
-**Note:** The context of `this` in the callback is binded to the element. You can change this context by applying your own object:
+**Note:** The context of `this` in the callback is bound to the element. You can change this context by applying your own object:
```javascript
rect.on('click', click, window) // context of this is window