We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 39190ea commit c8b8ce2Copy full SHA for c8b8ce2
examples/snapshot/Clock.react.js
@@ -15,7 +15,7 @@ const Clock = () => {
15
return () => clearInterval(timerID);
16
}, []);
17
18
- return <p>{seconds} seconds have ellapsed since the UNIX epoch.</p>;
+ return <p>{seconds} seconds have elapsed since the UNIX epoch.</p>;
19
};
20
21
export default Clock;
examples/snapshot/__tests__/__snapshots__/clock.react.test.js.snap
@@ -3,6 +3,6 @@
3
exports[`renders correctly 1`] = `
4
<p>
5
1482363367.071
6
- seconds have ellapsed since the UNIX epoch.
+ seconds have elapsed since the UNIX epoch.
7
</p>
8
`;
0 commit comments