diff options
author | Linus Groh <mail@linusgroh.de> | 2021-01-22 17:42:36 +0100 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2021-01-22 18:41:29 +0100 |
commit | 421587c15ccdef4764f45a281ffe1d01bd027ed6 (patch) | |
tree | d4dfcf9c99f0c16be5d87d410f39542cf49d7415 /Userland/Services/WindowServer | |
parent | 7ad31651bd6a00d7b20d429b88bcfd8d707a6c3e (diff) | |
download | serenity-421587c15ccdef4764f45a281ffe1d01bd027ed6.zip |
Everywhere: Fix typos
Diffstat (limited to 'Userland/Services/WindowServer')
-rw-r--r-- | Userland/Services/WindowServer/Compositor.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Userland/Services/WindowServer/Compositor.cpp b/Userland/Services/WindowServer/Compositor.cpp index 059222494f..e93d4fddbf 100644 --- a/Userland/Services/WindowServer/Compositor.cpp +++ b/Userland/Services/WindowServer/Compositor.cpp @@ -527,7 +527,7 @@ void Compositor::flush(const Gfx::IntRect& a_rect) { auto rect = Gfx::IntRect::intersection(a_rect, Screen::the().rect()); - // Almost everything in Compositor is in logical coordintes, with the painters having + // Almost everything in Compositor is in logical coordinates, with the painters having // a scale applied. But this routine accesses the backbuffer pixels directly, so it // must work in physical coordinates. rect = rect * Screen::the().scale_factor(); |