From 6ff446fd301307766636c8ad611a18fe2ce3f0ab Mon Sep 17 00:00:00 2001 From: Nico Weber Date: Tue, 26 Mar 2024 08:09:32 -0400 Subject: [PATCH] LibGfx/JBIG2: Fix a comment typo --- Userland/Libraries/LibGfx/ImageFormats/JBIG2Loader.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Userland/Libraries/LibGfx/ImageFormats/JBIG2Loader.cpp b/Userland/Libraries/LibGfx/ImageFormats/JBIG2Loader.cpp index 3bc93332658..7dba93229c1 100644 --- a/Userland/Libraries/LibGfx/ImageFormats/JBIG2Loader.cpp +++ b/Userland/Libraries/LibGfx/ImageFormats/JBIG2Loader.cpp @@ -1595,7 +1595,7 @@ static ErrorOr>> symbol_dictionary_decoding_procedu u32 code_length = ceil(log2(inputs.input_symbols.size() + inputs.number_of_new_symbols)); // 6.5.8.2.2 Decoding a bitmap when REFAGGNINST = 1 - // FIXME: This is missing some setps for the SDHUFF = 1 case. + // FIXME: This is missing some steps for the SDHUFF = 1 case. if (number_of_symbol_instances != 1) return Error::from_string_literal("JBIG2ImageDecoderPlugin: Unexpected number of symbol instances");