From 97eb02eb5526b8c9d026f9ff2498205399f4ef1e Mon Sep 17 00:00:00 2001 From: Ellpeck Date: Sat, 1 May 2021 20:54:17 +0200 Subject: [PATCH] fixed incomplete api documentation --- Illumilib/IllumilibLighting.cs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Illumilib/IllumilibLighting.cs b/Illumilib/IllumilibLighting.cs index d271a6f..89c9e72 100644 --- a/Illumilib/IllumilibLighting.cs +++ b/Illumilib/IllumilibLighting.cs @@ -72,10 +72,10 @@ namespace Illumilib { /// Sets the lighting for the specified to the given color. /// Only a single key can be specified at a time. /// - /// - /// - /// - /// + /// The key value to set the lighting for + /// The color's red value, between 0 and 1 + /// The color's green value, between 0 and 1 + /// The color's blue value, between 0 and 1 public static void SetKeyLighting(KeyboardKeys key, float r, float g, float b) { ForEach(s => s.SetKeyLighting(key, r, g, b)); }