From c50b3e668ddd7cbc3b2121f4012757bff984f33c Mon Sep 17 00:00:00 2001 From: Abylaikhan Zulbukharov Date: Wed, 17 Feb 2021 18:18:11 +0600 Subject: [PATCH] Update README.md --- subjects/tic_tac_toe/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/subjects/tic_tac_toe/README.md b/subjects/tic_tac_toe/README.md index 97d5728cb..5afc7f926 100644 --- a/subjects/tic_tac_toe/README.md +++ b/subjects/tic_tac_toe/README.md @@ -51,7 +51,7 @@ fn main() { "{:?}", tic_tac_toe(vec![ vec!["O", "X", "O"], - vec!["O", "P", "X"], + vec!["O", "O", "X"], vec!["X", "#", "X"] ]) );