diff --git a/content/docs/handling-events.md b/content/docs/handling-events.md index 6f2e6ed6d2e..f1ab3dc843b 100644 --- a/content/docs/handling-events.md +++ b/content/docs/handling-events.md @@ -145,4 +145,4 @@ Inside a loop, it is common to want to pass an extra parameter to an event handl The above two lines are equivalent, and use [arrow functions](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Functions/Arrow_functions) and [`Function.prototype.bind`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_objects/Function/bind) respectively. -In both cases, the `e` argument representing the React event will be passed as a second argument after the ID. With an arrow function, we have to pass it explicitly, but with `bind` any further arguments are automatically forwarded. +In both cases, the `e` argument representing the React event will be passed as the last argument after the ID. With an arrow function, we have to pass it explicitly, but with `bind` any further arguments are automatically forwarded.