diff options
-rwxr-xr-x | tictactoe.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tictactoe.py b/tictactoe.py index 53e22be..747c598 100755 --- a/tictactoe.py +++ b/tictactoe.py @@ -96,7 +96,7 @@ class gtkTicTacToe (gtk.DrawingArea): return False def computer_turn_random (self): - '''Computer IA - yes, it's _very_ random''' + '''Computer AI - yes, it's _very_ random''' cells = self.empty_cells () cell = random.randint (1, cells) for j in range (3): @@ -110,7 +110,7 @@ class gtkTicTacToe (gtk.DrawingArea): break def computer_turn_smart (self): - '''Computer IA, much less random''' + '''Computer AI, much less random''' if not self._map[1][1]: self._map[1][1] = COMPUTER_ID return |