From 19e421b65041a23095be632f76297d89704f93d6 Mon Sep 17 00:00:00 2001 From: Rajesh Muppalla <1348422+codingnirvana@users.noreply.github.com> Date: Thu, 5 Oct 2023 14:43:55 +0530 Subject: [PATCH] Fixing a bug in examples/TicTacToe (#1) Signed-off-by: Rajesh Muppalla <1348422+codingnirvana@users.noreply.github.com> --- examples/tictactoe/src/main.leo | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/tictactoe/src/main.leo b/examples/tictactoe/src/main.leo index 7e7c36426e..24ec333e6c 100644 --- a/examples/tictactoe/src/main.leo +++ b/examples/tictactoe/src/main.leo @@ -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.