From a2ac44dcc1d48bcb81e8a2e8bc948ca3eb25e037 Mon Sep 17 00:00:00 2001 From: oSumAtrIX Date: Fri, 23 Jun 2023 06:33:10 +0200 Subject: [PATCH] chore: use more generic inline docs --- src/main/kotlin/app/revanced/patcher/patch/PatchOption.kt | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/main/kotlin/app/revanced/patcher/patch/PatchOption.kt b/src/main/kotlin/app/revanced/patcher/patch/PatchOption.kt index cfb0c1c..ecf3a85 100644 --- a/src/main/kotlin/app/revanced/patcher/patch/PatchOption.kt +++ b/src/main/kotlin/app/revanced/patcher/patch/PatchOption.kt @@ -79,10 +79,10 @@ class PatchOptions(vararg options: PatchOption<*>) : Iterable> { /** * A [Patch] option. - * @param key Unique identifier of the option. Example: _`settings.microg.enabled`_ + * @param key Unique identifier of the option. Example: _`settings`_ * @param default The default value of the option. - * @param title A human-readable title of the option. Example: _MicroG Settings_ - * @param description A human-readable description of the option. Example: _Settings integration for MicroG._ + * @param title A human-readable title of the option. Example: _Patch Settings_ + * @param description A human-readable description of the option. Example: _Settings for the patches._ * @param required Whether the option is required. */ @Suppress("MemberVisibilityCanBePrivate")