8000 chore: fix typo in examples (#11788) · jestjs/jest@c8b8ce2 · GitHub
[go: up one dir, main page]

Skip to content

Commit c8b8ce2

Browse files
authored
chore: fix typo in examples (#11788)
1 parent 39190ea commit c8b8ce2

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

examples/snapshot/Clock.react.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ const Clock = () => {
1515
return () => clearInterval(timerID);
1616
}, []);
1717

18-
return <p>{seconds} seconds have ellapsed since the UNIX epoch.</p>;
18+
return <p>{seconds} seconds have elapsed since the UNIX epoch.</p>;
1919
};
2020

2121
export default Clock;

examples/snapshot/__tests__/__snapshots__/clock.react.test.js.snap

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,6 @@
33
exports[`renders correctly 1`] = `
44
<p>
55
1482363367.071
6-
seconds have ellapsed since the UNIX epoch.
6+
seconds have elapsed since the UNIX epoch.
77
</p>
88
`;

0 commit comments

Comments
 (0)
0