Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
proper arg order
  • Loading branch information
beanbag44 committed Oct 15, 2025
commit dcb8f71caac0359cfcb91f2f53c7f205dc9ab712
2 changes: 1 addition & 1 deletion src/main/kotlin/com/lambda/config/groups/SettingGroup.kt
Original file line number Diff line number Diff line change
Expand Up @@ -71,8 +71,8 @@ abstract class SettingGroup(val c: Configurable) {

@SettingEditorDsl
internal inline fun <T : Any, R : Any> editTypedWith(
other: KProperty0<R>,
vararg settings: KProperty0<T>,
other: KProperty0<R>,
edits: TypedEditBuilder<T>.(AbstractSetting<R>) -> Unit
) = TypedEditBuilder(settings.map { it.delegate } as List<AbstractSetting<T>>, c).edits(other.delegate as AbstractSetting<R>)

Expand Down