diff --git a/src/raygui.h b/src/raygui.h index 5b837d0..416cdeb 100644 --- a/src/raygui.h +++ b/src/raygui.h @@ -3472,7 +3472,7 @@ int GuiColorPanel(Rectangle bounds, const char *text, Color *color) GuiColorPanelHSV(bounds, text, &hsv); // Check if the hsv was changed, only then change the color. - // This is necessary, because the Color->HSV->Color conversion has precision errors. + // This is required, because the Color->HSV->Color conversion has precision errors. // Thus the assignment from HSV to Color should only be made, if the HSV has a new user-entered value. // Otherwise GuiColorPanel would often modify it's color without user input. // TODO: GuiColorPanelHSV could return 1 if the slider was dragged, to simplify this check.