Type fix 'Diffrent' ➡️ 'Different' (#2215)

Type fix 'Diffrent' ➡️ 'Different'
This commit is contained in:
Arihant Verma
2019-08-09 15:28:44 +05:30
committed by Sunil Pai
parent 4463b791ed
commit 4559e1c20e

View File

@@ -393,7 +393,7 @@ it("changes value when clicked", () => {
});
```
Diffrent DOM events and their properties are described in [MDN](https://developer.mozilla.org/en-US/docs/Web/API/MouseEvent). Note that you need to pass `{ bubbles: true }` in each event you create for it to reach the React listener because React automatically delegates events to the document.
Different DOM events and their properties are described in [MDN](https://developer.mozilla.org/en-US/docs/Web/API/MouseEvent). Note that you need to pass `{ bubbles: true }` in each event you create for it to reach the React listener because React automatically delegates events to the document.
> Note:
>