From 4b1f7008fd6bbde61d069793b35ea6c94d719dad Mon Sep 17 00:00:00 2001 From: CoCoSol007 Date: Wed, 21 Feb 2024 17:49:20 +0100 Subject: [PATCH] fix fmt --- crates/border-wars/src/map/hex.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/border-wars/src/map/hex.rs b/crates/border-wars/src/map/hex.rs index 7ffb02c..415bdfc 100644 --- a/crates/border-wars/src/map/hex.rs +++ b/crates/border-wars/src/map/hex.rs @@ -248,8 +248,8 @@ impl HexPosition { /// # Example /// /// ```no_run - /// use border_wars::map::hex::HexPosition; /// use bevy::math::Vec2; + /// use border_wars::map::hex::HexPosition; /// /// let position = HexPosition(1, 0); /// assert_eq!(position.to_pixel_coordinates(), (3f32.sqrt(), 0.0).into());