From 8506e8f19bb3ae3051cdbe01f808eb54921be13d Mon Sep 17 00:00:00 2001 From: Ian Schmitz Date: Thu, 28 Mar 2019 15:12:00 -0700 Subject: [PATCH] Fix README.md typo MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Just fixing a small typo 😃. Thanks for the great lib! --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 0326734f..d148af95 100644 --- a/README.md +++ b/README.md @@ -130,7 +130,7 @@ test('Fetch makes an API call and displays the greeting when load-greeting is cl expect(getByTestId('ok-button')).toHaveAttribute('disabled') // snapshots work great with regular DOM nodes! expect(container.firstChild).toMatchSnapshot() - // you can also use get a `DocumentFragment`, which is useful if you want to compare nodes across render + // you can also get a `DocumentFragment`, which is useful if you want to compare nodes across renders expect(asFragment()).toMatchSnapshot() }) ```