1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 13:27:35 +00:00

LibPDF: Fix comment typo

This commit is contained in:
Nico Weber 2023-10-19 19:53:35 -04:00 committed by Andreas Kling
parent ea6fed627a
commit 64bb9aa8c7

View file

@ -862,7 +862,7 @@ PDFErrorOr<NonnullRefPtr<Gfx::Bitmap>> Renderer::load_image(NonnullRefPtr<Stream
} }
if (TRY(is_filter(CommonNames::DCTDecode))) { if (TRY(is_filter(CommonNames::DCTDecode))) {
// TODO: stream objects could store Variant<bytes/Bitmap> to avoid seialisation/deserialisation here // TODO: stream objects could store Variant<bytes/Bitmap> to avoid serialisation/deserialisation here
return TRY(Gfx::Bitmap::create_from_serialized_bytes(image->bytes())); return TRY(Gfx::Bitmap::create_from_serialized_bytes(image->bytes()));
} }