Skip to content

Commit adbdfd6

Browse files
committed
Fix typo
1 parent 8bfafe1 commit adbdfd6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/rules/jsx-no-bind.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ The following patterns are considered warnings:
1010
<div onClick={this._handleClick.bind(this)}></div>
1111
```
1212
```jsx
13-
<div onClick={() => console.log('Hello!'))}></div>
13+
<div onClick={() => console.log('Hello!')}></div>
1414
```
1515

1616
The following patterns are not considered warnings:

0 commit comments

Comments
 (0)