From 4559e1c20ea4e20a64b4a93aae346c753a1df5cd Mon Sep 17 00:00:00 2001 From: Arihant Verma Date: Fri, 9 Aug 2019 15:28:44 +0530 Subject: [PATCH] =?UTF-8?q?Type=20fix=20'Diffrent'=20=E2=9E=A1=EF=B8=8F=20?= =?UTF-8?q?'Different'=20(#2215)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Type fix 'Diffrent' ➡️ 'Different' --- content/docs/testing-recipes.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/docs/testing-recipes.md b/content/docs/testing-recipes.md index f2b5b710..95187680 100644 --- a/content/docs/testing-recipes.md +++ b/content/docs/testing-recipes.md @@ -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: >