fix: typo in ListOption

This commit is contained in:
Sculas 2022-09-06 21:44:05 +02:00
parent 53e807dec1
commit 392164862c
No known key found for this signature in database
GPG key ID: 1530BFF96D1EEB89

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")
}
}
}