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 }; ///