1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 15:37:46 +00:00

Everywhere: Fix typos

This commit is contained in:
Linus Groh 2021-01-22 17:42:36 +01:00 committed by Andreas Kling
parent 7ad31651bd
commit 421587c15c
12 changed files with 16 additions and 16 deletions

View file

@ -111,7 +111,7 @@ u32 CanonicalCode::read_symbol(InputBitStream& stream) const
code_bits = code_bits << 1 | stream.read_bits(1);
ASSERT(code_bits < (1 << 16));
// FIXME: This is very inefficent and could greatly be improved by implementing this
// FIXME: This is very inefficient and could greatly be improved by implementing this
// algorithm: https://www.hanshq.net/zip.html#huffdec
size_t index;
if (AK::binary_search(m_symbol_codes.span(), code_bits, &index))