diff --git a/docs/01_tutorials/04_tictactoe.rst b/docs/01_tutorials/04_tictactoe.rst index ff7918e1f..232f6c349 100644 --- a/docs/01_tutorials/04_tictactoe.rst +++ b/docs/01_tutorials/04_tictactoe.rst @@ -542,7 +542,7 @@ That's it. By executing the code, you will see a progress bar indicating the pro
-Notice that, our learned agent plays the role of agent 2, placing ``o`` on the board. The agent performs pretty well against the random opponent! It learns the rule of the game by trial and error, and learns that four consecutive ``o`` means winning, so it does! +Notice that, our learned agent plays the role of agent 2, placing ``o`` on the board. The agent performs pretty well against the random opponent! It learns the rule of the game by trial and error, and learns that three consecutive ``o`` means winning, so it does! The above code can be executed in a python shell or can be saved as a script file (we have saved it in ``test/pettingzoo/test_tic_tac_toe.py``). In the latter case, you can train an agent by