summaryrefslogtreecommitdiff
path: root/Userland/Services/WindowServer
diff options
context:
space:
mode:
authorLinus Groh <mail@linusgroh.de>2021-01-22 17:42:36 +0100
committerAndreas Kling <kling@serenityos.org>2021-01-22 18:41:29 +0100
commit421587c15ccdef4764f45a281ffe1d01bd027ed6 (patch)
treed4dfcf9c99f0c16be5d87d410f39542cf49d7415 /Userland/Services/WindowServer
parent7ad31651bd6a00d7b20d429b88bcfd8d707a6c3e (diff)
downloadserenity-421587c15ccdef4764f45a281ffe1d01bd027ed6.zip
Everywhere: Fix typos
Diffstat (limited to 'Userland/Services/WindowServer')
-rw-r--r--Userland/Services/WindowServer/Compositor.cpp2
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();