mirror of
https://github.com/RGBCube/serenity
synced 2025-05-31 15:48:12 +00:00
Everywhere: Fix typos
Mostly in comments, but sprintf() now prints "August" instead of "Auguest" so that's something.
This commit is contained in:
parent
7399874479
commit
ef1b21004f
28 changed files with 39 additions and 39 deletions
|
@ -110,7 +110,7 @@ u32 CanonicalCode::read_symbol(InputBitStream& stream) const
|
|||
for (;;) {
|
||||
code_bits = code_bits << 1 | stream.read_bits(1);
|
||||
|
||||
// FIXME: This seems really inefficent, this could be an index into an array instead.
|
||||
// FIXME: This seems really inefficient, this could be an index into an array instead.
|
||||
size_t index;
|
||||
if (AK::binary_search(m_symbol_codes.span(), code_bits, AK::integral_compare<u32>, &index))
|
||||
return m_symbol_values[index];
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue