1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 08:48:11 +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:
Nico Weber 2020-10-02 09:59:28 -04:00 committed by Andreas Kling
parent 7399874479
commit ef1b21004f
28 changed files with 39 additions and 39 deletions

View file

@ -46,8 +46,8 @@ void AbbreviationsMap::populate_map()
while (!abbreviation_stream.eof()) {
size_t abbreviation_code = 0;
abbreviation_stream.read_LEB128_unsigned(abbreviation_code);
// An abbrevation code of 0 marks the end of the
// abbrevations for a given compilation unit
// An abbreviation code of 0 marks the end of the
// abbreviations for a given compilation unit
if (abbreviation_code == 0)
break;