diff --git a/src/internal/colors/Rgb48Color.h b/src/internal/colors/Rgb48Color.h index 838976c..eae580a 100644 --- a/src/internal/colors/Rgb48Color.h +++ b/src/internal/colors/Rgb48Color.h @@ -119,8 +119,8 @@ struct Rgb48Color : RgbColorBase // compares two colors with the given epsilon (delta allowed) // returns the greatest difference of a set of elements, // 0 = equal within epsilon delta - // negative - this is less than other - // positive - this is greater than other + // negative - left is less than right + // positive - left is greater than right // ------------------------------------------------------------------------ static int32_t Compare(const Rgb48Color& left, const Rgb48Color& right, uint16_t epsilon = 256) { diff --git a/src/internal/colors/RgbColor.h b/src/internal/colors/RgbColor.h index 9929bb4..2b34d80 100644 --- a/src/internal/colors/RgbColor.h +++ b/src/internal/colors/RgbColor.h @@ -119,8 +119,8 @@ struct RgbColor : RgbColorBase // compares two colors with the given epsilon (delta allowed) // returns the greatest difference of a set of elements, // 0 = equal within epsilon delta - // negative - this is less than other - // positive - this is greater than other + // negative - left is less than right + // positive - left is greater than right // ------------------------------------------------------------------------ static int16_t Compare(const RgbColor& left, const RgbColor& right, uint8_t epsilon = 1) { diff --git a/src/internal/colors/Rgbw64Color.h b/src/internal/colors/Rgbw64Color.h index 569389e..d37bd42 100644 --- a/src/internal/colors/Rgbw64Color.h +++ b/src/internal/colors/Rgbw64Color.h @@ -137,8 +137,8 @@ struct Rgbw64Color : RgbColorBase // compares two colors with the given epsilon (delta allowed) // returns the greatest difference of a set of elements, // 0 = equal within epsilon delta - // negative - this is less than other - // positive - this is greater than other + // negative - left is less than right + // positive - left is greater than right // ------------------------------------------------------------------------ static int32_t Compare(const Rgbw64Color& left, const Rgbw64Color& right, uint16_t epsilon = 256) { diff --git a/src/internal/colors/RgbwColor.h b/src/internal/colors/RgbwColor.h index aacebac..6154769 100644 --- a/src/internal/colors/RgbwColor.h +++ b/src/internal/colors/RgbwColor.h @@ -121,8 +121,8 @@ struct RgbwColor : RgbColorBase // compares two colors with the given epsilon (delta allowed) // returns the greatest difference of a set of elements, // 0 = equal within epsilon delta - // negative - this is less than other - // positive - this is greater than other + // negative - left is less than right + // positive - left is greater than right // ------------------------------------------------------------------------ static int16_t Compare(const RgbwColor& left, const RgbwColor& right, uint8_t epsilon = 1) {