From 3d25021fde78107ce53022f2f93cb4256542710a Mon Sep 17 00:00:00 2001 From: CoCo_Sol007 Date: Wed, 13 Mar 2024 07:54:42 +0100 Subject: [PATCH] remove doc --- crates/border-wars/src/map/selected_tile.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/border-wars/src/map/selected_tile.rs b/crates/border-wars/src/map/selected_tile.rs index dd53bf5..7de28ef 100644 --- a/crates/border-wars/src/map/selected_tile.rs +++ b/crates/border-wars/src/map/selected_tile.rs @@ -90,7 +90,7 @@ fn mouse_handler( events_writer.send(ClickOnTheWorld(cursor_position_in_world)); } -/// Get the closest tile to the cursor, send it in an event and select it. +/// Get the closest tile to the cursor and select it. fn select_closest_tile( tiles: Query<(Entity, &Transform, &Tile)>, mut click_event_reader: EventReader,