diff --git a/src/board/mod.rs b/src/board/mod.rs
index 5fd06df4cc23a8f5906a083a7977296c61dac995..3339ee4c94e238437efb7a4a1c0e37e3a5911656 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> {