Browse Source

Fix typo in tutorial-tic-tac-toe.md (#5438)

main
Branimir Rijavec 2 years ago
committed by GitHub
parent
commit
46b5a69d72
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      beta/src/content/learn/tutorial-tic-tac-toe.md

2
beta/src/content/learn/tutorial-tic-tac-toe.md

@ -1417,7 +1417,7 @@ function handleClick(i) {
if (squares[i]) {
return;
}
let nextSquares = squares.slice();
const nextSquares = squares.slice();
//...
}
```

Loading…
Cancel
Save