From 56adf8b219351c0ab763dd2d962271ef6c5ba7af Mon Sep 17 00:00:00 2001 From: CoCoSol007 Date: Wed, 14 Feb 2024 19:07:59 +0100 Subject: [PATCH] fix test --- crates/border-wars/src/map/hex.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/crates/border-wars/src/map/hex.rs b/crates/border-wars/src/map/hex.rs index 83e3776..1aeaa14 100644 --- a/crates/border-wars/src/map/hex.rs +++ b/crates/border-wars/src/map/hex.rs @@ -39,7 +39,7 @@ impl HexPosition { /// # Example /// /// ```no_run - /// use border_wars::hex::HexPosition; + /// use border_wars::map::hex::HexPosition; /// /// let a = HexPosition { q: 0, r: 0 }; /// let b = HexPosition { q: 1, r: 1 }; @@ -70,7 +70,7 @@ impl HexPosi /// # Example /// /// ``` - /// use border_wars::hex::HexPosition; + /// use border_wars::map::hex::HexPosition; /// /// let position = HexPosition { q: 0, r: 0 }; ///