Skip to content

Commit d808292

Browse files
committed
Corrected minor grammar mistake in TICTAC.LUA
1 parent 3060aff commit d808292

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

xtra/TICTAC.LUA

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ local function game()
4141
local b = {"7","8","9","4","5","6","1","2","3"} printBoard(b)
4242
while true do
4343
humanMove(b)
44-
if checkWin(b, "U") then print("User win!") printBoard(b) break
44+
if checkWin(b, "U") then print("User wins!") printBoard(b) break
4545
elseif boardFull(b) then print("It's a tie!") printBoard(b) break end
4646
computerMove(b)
4747
if checkWin(b, "C") then print("CPU wins!") printBoard(b) break

0 commit comments

Comments
 (0)