1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 16:47:36 +00:00

Everywhere: Fix a bunch of typos

This commit is contained in:
Linus Groh 2022-05-29 11:50:10 +01:00 committed by Andreas Kling
parent f377951178
commit 173dcfb7cb
17 changed files with 23 additions and 23 deletions

View file

@ -247,7 +247,7 @@ ALWAYS_INLINE void Device::rasterize(Gfx::IntRect& render_bounds, CB1 set_covera
auto const qy1 = render_bounds_bottom & ~1;
// Rasterize all quads
// FIXME: this could be embarrasingly parallel
// FIXME: this could be embarrassingly parallel
for (int qy = qy0; qy <= qy1; qy += 2) {
for (int qx = qx0; qx <= qx1; qx += 2) {
PixelQuad quad;