Skip to content

Commit

Permalink
Merge pull request #2657 from codingnirvana/testnet3
Browse files Browse the repository at this point in the history
Fixing a bug in examples/TicTacToe
  • Loading branch information
d0cd authored Oct 5, 2023
2 parents ba058aa + 19e421b commit 3ebe15a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion examples/tictactoe/src/main.leo
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ program tictactoe.aleo {
let updated: Board = Board {
r1: Row { c1: r1c1, c2: r1c2, c3: r1c3 },
r2: Row { c1: r2c1, c2: r2c2, c3: r2c3 },
r3: Row { c1: r3c1, c2: r2c2, c3: r2c3 },
r3: Row { c1: r3c1, c2: r3c2, c3: r3c3 },
};

// Check if the game is over.
Expand Down

0 comments on commit 3ebe15a

Please sign in to comment.