From 57455f715483475aeb19b22e21e9f0f4e212f5fb Mon Sep 17 00:00:00 2001 From: Aevyrie Date: Sun, 29 Oct 2023 20:09:27 -0700 Subject: [PATCH] Fix doc links --- crates/bevy_eventlistener_core/src/callbacks.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/crates/bevy_eventlistener_core/src/callbacks.rs b/crates/bevy_eventlistener_core/src/callbacks.rs index 08fa2e3..e038976 100644 --- a/crates/bevy_eventlistener_core/src/callbacks.rs +++ b/crates/bevy_eventlistener_core/src/callbacks.rs @@ -31,13 +31,13 @@ impl CallbackSystem { } } -/// A [`SystemParam`](bevy::ecs::system::SystemParam) used to get immutable access the the +/// A [`SystemParam`](bevy_ecs::system::SystemParam) used to get immutable access the the /// [`ListenerInput`] for this callback. /// /// Use this in callback systems to access event data for the event that triggered the callback. pub type Listener<'w, E> = Res<'w, ListenerInput>; -/// A [`SystemParam`](bevy::ecs::system::SystemParam) used to get mutable access the the +/// A [`SystemParam`](bevy_ecs::system::SystemParam) used to get mutable access the the /// [`ListenerInput`] for this callback. /// /// Use this in callback systems to access event data for the event that triggered the callback.