Skip to content

Commit

Permalink
chore: fix typo in examples (#11788)
Browse files Browse the repository at this point in the history
  • Loading branch information
k1499 committed Aug 27, 2021
1 parent 39190ea commit c8b8ce2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion examples/snapshot/Clock.react.js
Expand Up @@ -15,7 +15,7 @@ const Clock = () => {
return () => clearInterval(timerID);
}, []);

return <p>{seconds} seconds have ellapsed since the UNIX epoch.</p>;
return <p>{seconds} seconds have elapsed since the UNIX epoch.</p>;
};

export default Clock;
Expand Up @@ -3,6 +3,6 @@
exports[`renders correctly 1`] = `
<p>
1482363367.071
seconds have ellapsed since the UNIX epoch.
seconds have elapsed since the UNIX epoch.
</p>
`;

0 comments on commit c8b8ce2

Please sign in to comment.