From 89fb1d3c5ab6f5e23f7e2566ebbe72534a988921 Mon Sep 17 00:00:00 2001 From: Greg Holland <30577851+horned-sphere@users.noreply.github.com> Date: Wed, 26 Jun 2024 12:28:29 +0100 Subject: [PATCH] Fixed doc comment. --- server/swimos_agent/src/lanes/map/mod.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/swimos_agent/src/lanes/map/mod.rs b/server/swimos_agent/src/lanes/map/mod.rs index 82bafca6d..a6dd9ac62 100644 --- a/server/swimos_agent/src/lanes/map/mod.rs +++ b/server/swimos_agent/src/lanes/map/mod.rs @@ -591,7 +591,7 @@ where decode.and_then(ProjTransform::new(projection)) } -/// An [`EventHandler`] that will alter an entry in the map. +/// An (event handler)[`crate::event_handler::EventHandler`] that will alter an entry in the map. pub struct MapLaneTransformEntry { projection: for<'a> fn(&'a C) -> &'a MapLane, key_and_f: Option<(K, F)>,