diff options
author | bush <101901339+therealbush@users.noreply.github.com> | 2022-04-23 15:06:46 -1000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-04-23 15:06:46 -1000 |
commit | 1f3c6dfcc7e8955dfe2dd7af802f18049e732aad (patch) | |
tree | 6c18375229f1bc41edb94318b3fbeac159278b47 /src | |
parent | d7aea55b98a683933b294d9ccb27bdf808a8719c (diff) | |
download | eventbus-kotlin-1f3c6dfcc7e8955dfe2dd7af802f18049e732aad.tar.gz eventbus-kotlin-1f3c6dfcc7e8955dfe2dd7af802f18049e732aad.tar.bz2 eventbus-kotlin-1f3c6dfcc7e8955dfe2dd7af802f18049e732aad.zip |
fixed links
Diffstat (limited to 'src')
-rw-r--r-- | src/main/kotlin/me/bush/eventbuskotlin/Listener.kt | 6 |
1 files 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 <reified T : Any> 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. |