1
0
mirror of https://github.com/SerenityOS/serenity synced 2024-07-09 04:50:46 +00:00

LibGfx/WebPLoaderLossless: Fix grammar-o in comment

This commit is contained in:
Nico Weber 2024-01-29 09:06:04 -05:00 committed by Tim Flynn
parent f784122703
commit b37f3c86fd

View File

@ -54,7 +54,7 @@ namespace {
// WebP-lossless's CanonicalCodes are almost identical to deflate's.
// One difference is that codes with a single element in webp-lossless consume 0 bits to produce that single element,
// while they consume 1 bit in Compress::CanonicalCode. This class wraps Compress::CanonicalCode to handle the case
// where the codes contain just a single element, and dispatch to Compress::CanonicalCode else.
// where the codes contain just a single element, and dispatches to Compress::CanonicalCode else.
class CanonicalCode {
public:
CanonicalCode()