From c8b8ce2908c38e79cf87e2919a8df8da1b592f61 Mon Sep 17 00:00:00 2001 From: Kausik S S <75879688+k1499@users.noreply.github.com> Date: Fri, 27 Aug 2021 14:12:21 +0530 Subject: [PATCH] chore: fix typo in examples (#11788) --- examples/snapshot/Clock.react.js | 2 +- .../snapshot/__tests__/__snapshots__/clock.react.test.js.snap | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/examples/snapshot/Clock.react.js b/examples/snapshot/Clock.react.js index 79e5595ab113..11a73525a4cb 100644 --- a/examples/snapshot/Clock.react.js +++ b/examples/snapshot/Clock.react.js @@ -15,7 +15,7 @@ const Clock = () => { return () => clearInterval(timerID); }, []); - return

{seconds} seconds have ellapsed since the UNIX epoch.

; + return

{seconds} seconds have elapsed since the UNIX epoch.

; }; export default Clock; diff --git a/examples/snapshot/__tests__/__snapshots__/clock.react.test.js.snap b/examples/snapshot/__tests__/__snapshots__/clock.react.test.js.snap index d70772d3a790..c3096a38045d 100644 --- a/examples/snapshot/__tests__/__snapshots__/clock.react.test.js.snap +++ b/examples/snapshot/__tests__/__snapshots__/clock.react.test.js.snap @@ -3,6 +3,6 @@ exports[`renders correctly 1`] = `

1482363367.071 - seconds have ellapsed since the UNIX epoch. + seconds have elapsed since the UNIX epoch.

`;