@@ -33,7 +33,7 @@ import com.lambda.config.settings.comparable.EnumSetting
3333import com.lambda.config.settings.complex.BlockPosSetting
3434import com.lambda.config.settings.complex.BlockSetting
3535import com.lambda.config.settings.complex.ColorSetting
36- import com.lambda.config.settings.complex.KeyBindSetting
36+ import com.lambda.config.settings.complex.KeybindSetting
3737import com.lambda.config.settings.complex.Vec3dSetting
3838import com.lambda.config.settings.numeric.DoubleSetting
3939import com.lambda.config.settings.numeric.FloatSetting
@@ -370,21 +370,21 @@ abstract class Configurable(
370370 ) = LongSetting (name, defaultValue, range, step, description, unit, visibility).register()
371371
372372 /* *
373- * Creates a [KeyBindSetting ] with the provided parameters and adds it to the [settings].
373+ * Creates a [KeybindSetting ] with the provided parameters and adds it to the [settings].
374374 *
375375 * @param name The unique identifier for the setting.
376376 * @param defaultValue The default [KeyCode] value of the setting.
377377 * @param description A brief explanation of the setting's purpose and behavior.
378378 * @param visibility A lambda expression that determines the visibility status of the setting.
379379 *
380- * @return The created [KeyBindSetting ].
380+ * @return The created [KeybindSetting ].
381381 */
382382 fun setting (
383383 name : String ,
384384 defaultValue : KeyCode ,
385385 description : String = "",
386386 visibility : () -> Boolean = { true },
387- ) = KeyBindSetting (name, defaultValue, description, visibility).register()
387+ ) = KeybindSetting (name, defaultValue, description, visibility).register()
388388
389389 /* *
390390 * Creates a [ColorSetting] with the provided parameters and adds it to the [settings].
0 commit comments