From 0fa385f13dc306616bf3b24cd1adcb4644df584f Mon Sep 17 00:00:00 2001 From: Sara Cope Date: Wed, 30 Jan 2019 09:54:24 -0500 Subject: [PATCH] Typo fix (#13595) Update the first sentence on line 289 from: "Reducer tests are also be a great fit for snapshots." to: "Reducer tests are also a great fit for snapshots." --- docs/contributors/testing-overview.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/contributors/testing-overview.md b/docs/contributors/testing-overview.md index 495109b5f07120..b2a2602491f9d5 100644 --- a/docs/contributors/testing-overview.md +++ b/docs/contributors/testing-overview.md @@ -286,7 +286,7 @@ describe( 'SolarSystem', () => { } ); ``` -Reducer tests are also be a great fit for snapshots. They are often large, complex data structures that shouldn't change unexpectedly, exactly what snapshots excel at! +Reducer tests are also a great fit for snapshots. They are often large, complex data structures that shouldn't change unexpectedly, exactly what snapshots excel at! #### Working with snapshots