1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-28 21:07:35 +00:00

Everywhere: Run spellcheck on all documentation

This commit is contained in:
Ben Wiederhake 2023-05-06 16:28:34 +02:00 committed by Jelle Raaijmakers
parent a7600caea1
commit ee47c0275e
15 changed files with 26 additions and 26 deletions

View file

@ -111,7 +111,7 @@ public:
auto int_loc = static_cast<i64>(floor(loc));
auto blend = loc - int_loc;
auto color = get_color(repeat_wrap_if_required(int_loc));
// Blend between the two neighbouring colors (this fixes some nasty aliasing issues at small angles)
// Blend between the two neighboring colors (this fixes some nasty aliasing issues at small angles)
if (blend >= 0.004f)
color = color_blend(color, get_color(repeat_wrap_if_required(int_loc + 1)), blend);
return color;