From b37f3c86fd5bd4f8f0ee2be69da331620ad5c211 Mon Sep 17 00:00:00 2001 From: Nico Weber Date: Mon, 29 Jan 2024 09:06:04 -0500 Subject: [PATCH] LibGfx/WebPLoaderLossless: Fix grammar-o in comment --- Userland/Libraries/LibGfx/ImageFormats/WebPLoaderLossless.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Userland/Libraries/LibGfx/ImageFormats/WebPLoaderLossless.cpp b/Userland/Libraries/LibGfx/ImageFormats/WebPLoaderLossless.cpp index 59c3ec9a8f..effb5f9a85 100644 --- a/Userland/Libraries/LibGfx/ImageFormats/WebPLoaderLossless.cpp +++ b/Userland/Libraries/LibGfx/ImageFormats/WebPLoaderLossless.cpp @@ -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()