From 1f3c6dfcc7e8955dfe2dd7af802f18049e732aad Mon Sep 17 00:00:00 2001 From: bush <101901339+therealbush@users.noreply.github.com> Date: Sat, 23 Apr 2022 15:06:46 -1000 Subject: fixed links --- src/main/kotlin/me/bush/eventbuskotlin/Listener.kt | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/main/kotlin/me/bush/eventbuskotlin/Listener.kt b/src/main/kotlin/me/bush/eventbuskotlin/Listener.kt index 7f92211..d9733b0 100644 --- a/src/main/kotlin/me/bush/eventbuskotlin/Listener.kt +++ b/src/main/kotlin/me/bush/eventbuskotlin/Listener.kt @@ -7,7 +7,7 @@ import kotlin.reflect.KClass * This class is not intended to be used externally, use [listener] instead. You *could* use this, * and it would work fine however you would have to specify the type explicitly. (ew!) * - * [Information and examples](https://github.com/therealbush/eventbus-kotlin#creating-an-event) + * [Information and examples](https://github.com/therealbush/eventbus-kotlin#creating-a-listener) * * @author bush * @since 1.0.0 @@ -30,7 +30,7 @@ class Listener @PublishedApi internal constructor( * or getter belonging to an object to be subscribed with [EventBus.subscribe], * or directly registered to an [EventBus] with [EventBus.register]. * - * [Information and examples](https://github.com/therealbush/eventbus-kotlin#creating-an-event) + * [Information and examples](https://github.com/therealbush/eventbus-kotlin#creating-a-listener) * * @param T The **exact** (no inheritance) type of event to listen for. * @param priority The priority of this listener, high to low. @@ -52,7 +52,7 @@ inline fun listener( * or getter belonging to an object to be subscribed with [EventBus.subscribe], * or directly registered to an [EventBus] with [EventBus.register]. * - * [Information and examples](https://github.com/therealbush/eventbus-kotlin#creating-an-event) + * [Information and examples](https://github.com/therealbush/eventbus-kotlin#creating-a-listener) * * @param type The **exact** (no inheritance) type of event to listen for. * @param priority The priority of this listener, high to low. -- cgit