From 4ade204f2dbc271e681a155e29f27fcff3a46460 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C3=ABl=20Hauspie?= <michael.hauspie@univ-lille.fr> Date: Wed, 30 Nov 2022 10:54:34 +0100 Subject: [PATCH] fix comments --- src/board/mod.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/board/mod.rs b/src/board/mod.rs index 5fd06df..3339ee4 100644 --- a/src/board/mod.rs +++ b/src/board/mod.rs @@ -1,9 +1,9 @@ -//! A module that implements several board games +//! A module that implements several games pub mod tictactoe; pub mod coin_flip; -/// A trait that defines a Board for a game where we can make a player +/// A trait that defines a game where we can make a player /// play a move and check if a player has won pub trait Game<Move, Player> { -- GitLab