Skip to content

Commit dcb8f71

Browse files
committed
proper arg order
1 parent a76e58b commit dcb8f71

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/kotlin/com/lambda/config/groups/SettingGroup.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,8 +71,8 @@ abstract class SettingGroup(val c: Configurable) {
7171

7272
@SettingEditorDsl
7373
internal inline fun <T : Any, R : Any> editTypedWith(
74-
other: KProperty0<R>,
7574
vararg settings: KProperty0<T>,
75+
other: KProperty0<R>,
7676
edits: TypedEditBuilder<T>.(AbstractSetting<R>) -> Unit
7777
) = TypedEditBuilder(settings.map { it.delegate } as List<AbstractSetting<T>>, c).edits(other.delegate as AbstractSetting<R>)
7878

0 commit comments

Comments
 (0)