Skip to content

Commit

Permalink
Fix typo (#245)
Browse files Browse the repository at this point in the history
* Fix typo

* Update exercises/06.tic-tac-toe/03.problem.history/index.tsx

---------

Co-authored-by: Kent C. Dodds <[email protected]>
  • Loading branch information
gferreri and kentcdodds authored Dec 30, 2024
1 parent 633a263 commit d4aaa1a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion exercises/06.tic-tac-toe/03.problem.history/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ function App() {
// 💰 NOTE: the "step" is actually the "index" which normally you don't want to
// use as the "key" prop. However, in this case, the index is effectively
// the "id" of the step in history, so it is correct.
const moves = 'TODO: create moves lis'
const moves = 'TODO: create moves li elements'

return (
<div className="game">
Expand Down

0 comments on commit d4aaa1a

Please sign in to comment.