From 9a03ee1c24bc5b390e753957ad6617b6688ab8dd Mon Sep 17 00:00:00 2001 From: Jelle Raaijmakers Date: Wed, 23 Jul 2025 11:28:48 +0200 Subject: [PATCH] AK: Fix mention of renamed member in Utf16View --- AK/Utf16View.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/AK/Utf16View.h b/AK/Utf16View.h index 4103b676996..7aa17d1c8c7 100644 --- a/AK/Utf16View.h +++ b/AK/Utf16View.h @@ -510,7 +510,7 @@ private: } m_string { .ascii = nullptr }; // Just like Utf16StringData, we store whether this string has ASCII or UTF-16 storage by setting the most - // significant bit of m_code_unit_length for UTF-16 storage. + // significant bit of m_length_in_code_units for UTF-16 storage. size_t m_length_in_code_units { 0 }; mutable size_t m_length_in_code_points { NumericLimits::max() }; };