From fae3336bd996c0bd494f97dae3aa066effe8afd6 Mon Sep 17 00:00:00 2001 From: PattaFeuFeu Date: Tue, 28 Nov 2023 00:05:11 +0100 Subject: [PATCH] Update documentation to reflect what the classes do MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This goes against Mastodon’s documentation, but their documentation seems to be outdated here. --- bigbone-rx/src/main/kotlin/social/bigbone/rx/RxTrendMethods.kt | 2 +- .../src/main/kotlin/social/bigbone/api/method/TrendMethods.kt | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bigbone-rx/src/main/kotlin/social/bigbone/rx/RxTrendMethods.kt b/bigbone-rx/src/main/kotlin/social/bigbone/rx/RxTrendMethods.kt index 2392be854..5f7319929 100644 --- a/bigbone-rx/src/main/kotlin/social/bigbone/rx/RxTrendMethods.kt +++ b/bigbone-rx/src/main/kotlin/social/bigbone/rx/RxTrendMethods.kt @@ -10,7 +10,7 @@ import social.bigbone.api.method.TrendMethods /** * Reactive implementation of [TrendMethods]. * - * View hashtags that are currently being used more frequently than usual. + * View trending tags, statuses, or links, i.e. those that are currently being used more frequently than usual. * @see Mastodon trends API methods */ class RxTrendMethods(client: MastodonClient) { diff --git a/bigbone/src/main/kotlin/social/bigbone/api/method/TrendMethods.kt b/bigbone/src/main/kotlin/social/bigbone/api/method/TrendMethods.kt index 09de731e6..018d2fd7a 100644 --- a/bigbone/src/main/kotlin/social/bigbone/api/method/TrendMethods.kt +++ b/bigbone/src/main/kotlin/social/bigbone/api/method/TrendMethods.kt @@ -8,7 +8,7 @@ import social.bigbone.api.entity.Tag import social.bigbone.api.entity.TrendsLink /** - * View hashtags that are currently being used more frequently than usual. + * View trending tags, statuses, or links, i.e. those that are currently being used more frequently than usual. * @see Mastodon trends API methods */ class TrendMethods(private val client: MastodonClient) {