summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibGfx/PGMLoader.cpp
diff options
context:
space:
mode:
authorAndreas Kling <kling@serenityos.org>2021-05-09 09:59:22 +0200
committerAndreas Kling <kling@serenityos.org>2021-05-09 09:59:22 +0200
commit6998fa5c54aa91520cfe279b6c480eb87c0831fc (patch)
tree3161119403777cc8d49a8a9d155b18fb38bd3aa5 /Userland/Libraries/LibGfx/PGMLoader.cpp
parent57c96ce50101db492679bae0eff49a401a16a24d (diff)
downloadserenity-6998fa5c54aa91520cfe279b6c480eb87c0831fc.zip
LibGfx: Change "white_space" => "whitespace"
Whitespace is one word. :^)
Diffstat (limited to 'Userland/Libraries/LibGfx/PGMLoader.cpp')
-rw-r--r--Userland/Libraries/LibGfx/PGMLoader.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/Userland/Libraries/LibGfx/PGMLoader.cpp b/Userland/Libraries/LibGfx/PGMLoader.cpp
index 000c10e79d..2df8a37dae 100644
--- a/Userland/Libraries/LibGfx/PGMLoader.cpp
+++ b/Userland/Libraries/LibGfx/PGMLoader.cpp
@@ -73,7 +73,7 @@ static bool read_image_data(PGMLoadingContext& context, Streamer& streamer)
if (!read_number(streamer, &value))
break;
- if (!read_white_space(context, streamer))
+ if (!read_whitespace(context, streamer))
break;
color_data.append({ (u8)value, (u8)value, (u8)value });