From 392164862c83d6e76b2a2113d6f6d59fef0020d1 Mon Sep 17 00:00:00 2001 From: Sculas Date: Tue, 6 Sep 2022 21:44:05 +0200 Subject: [PATCH] fix: typo in ListOption --- src/main/kotlin/app/revanced/patcher/patch/PatchOption.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/kotlin/app/revanced/patcher/patch/PatchOption.kt b/src/main/kotlin/app/revanced/patcher/patch/PatchOption.kt index 587351f..95defbd 100644 --- a/src/main/kotlin/app/revanced/patcher/patch/PatchOption.kt +++ b/src/main/kotlin/app/revanced/patcher/patch/PatchOption.kt @@ -154,7 +154,7 @@ sealed class PatchOption( ) { init { if (default !in options) { - throw IllegalStateException("Default option must be an allowed options") + throw IllegalStateException("Default option must be an allowed option") } } }