From e60bca04f3da690256ce019bd8907c2b368589ee Mon Sep 17 00:00:00 2001 From: Asher Oloo <63627538+miosher@users.noreply.github.com> Date: Fri, 21 May 2021 09:55:32 +0300 Subject: [PATCH] Fixed a minor typo in a comment (#3685) --- 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 1fa4a696..45669d12 100644 --- a/content/docs/testing-recipes.md +++ b/content/docs/testing-recipes.md @@ -393,7 +393,7 @@ it("changes value when clicked", () => { render(, container); }); - // get ahold of the button element, and trigger some clicks on it + // get a hold of the button element, and trigger some clicks on it const button = document.querySelector("[data-testid=toggle]"); expect(button.innerHTML).toBe("Turn on");