summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibGfx
diff options
context:
space:
mode:
authormjz19910 <matthias291999@gmail.com>2022-01-06 07:07:15 -0700
committerLinus Groh <mail@linusgroh.de>2022-01-07 10:56:59 +0100
commit3102d8e160bd61181dce395b425aea99e8381632 (patch)
treea71464b934ddd5a302c292bac45767e18a9bc217 /Userland/Libraries/LibGfx
parent6bf91d00eff87b8904239db5126165485741d731 (diff)
downloadserenity-3102d8e160bd61181dce395b425aea99e8381632.zip
Everywhere: Fix many spelling errors
Diffstat (limited to 'Userland/Libraries/LibGfx')
-rw-r--r--Userland/Libraries/LibGfx/PNGLoader.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/Userland/Libraries/LibGfx/PNGLoader.cpp b/Userland/Libraries/LibGfx/PNGLoader.cpp
index cfabcfbc82..ca3e0931de 100644
--- a/Userland/Libraries/LibGfx/PNGLoader.cpp
+++ b/Userland/Libraries/LibGfx/PNGLoader.cpp
@@ -714,7 +714,7 @@ static ErrorOr<void> decode_png_bitmap(PNGLoadingContext& context)
return Error::from_string_literal("PNGImageDecoderPlugin: Didn't see an IHDR chunk."sv);
if (context.color_type == 3 && context.palette_data.is_empty())
- return Error::from_string_literal("PNGImageDecoderPlugin: Didn't see a PLTE chunk for a palettized image, or it was empty."sv);
+ return Error::from_string_literal("PNGImageDecoderPlugin: Didn't see a PLTE chunk for a palletized image, or it was empty."sv);
auto result = Compress::Zlib::decompress_all(context.compressed_data.span());
if (!result.has_value()) {