Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit c065b03

Browse files
sophiebitszpao
authored andcommitted
autoBind -> Autobinding
We don't use the term autoBind anywhere any more.
1 parent c32c788 commit c065b03

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

docs/docs/03-interactivity-and-dynamic-uis.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ With React you simply pass your event handler as a camelCased prop similar to ho
4646
If you'd like to use React on a touch device (i.e. a phone or tablet), simply call `React.initializeTouchEvents(true);` to turn them on.
4747

4848

49-
## Under the Hood: autoBind and Event Delegation
49+
## Under the Hood: Autobinding and Event Delegation
5050

5151
Under the hood React does a few things to keep your code performant and easy to understand.
5252

docs/tips/11-dom-event-listeners.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,4 +43,4 @@ React.renderComponent(<Box />, mountNode);
4343

4444
`componentDidMount` is called after the component is mounted and has a DOM representation. This is often a place where you would attach generic DOM events.
4545

46-
Notice that the event callback is bound to the react component and not the original element. React automatically binds methods to the current component instance for you through a process of [autobinding](../docs/interactivity-and-dynamic-uis.html#under-the-hood-autobind-and-event-delegation).
46+
Notice that the event callback is bound to the react component and not the original element. React automatically binds methods to the current component instance for you through a process of [autobinding](../docs/interactivity-and-dynamic-uis.html#under-the-hood-autobinding-and-event-delegation).

0 commit comments

Comments
 (0)