fix: typo in ListOption

This commit is contained in:
Sculas
2022-09-06 21:44:05 +02:00
parent 53e807dec1
commit 392164862c

View File

@ -154,7 +154,7 @@ sealed class PatchOption<T>(
) {
init {
if (default !in options) {
throw IllegalStateException("Default option must be an allowed options")
throw IllegalStateException("Default option must be an allowed option")
}
}
}