1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 18:07:34 +00:00

Everywhere: Clean up "the the" comment typos

This commit is contained in:
Nico Weber 2022-11-03 13:27:18 -04:00 committed by Linus Groh
parent b820b9b2ff
commit daeaefad17
12 changed files with 15 additions and 15 deletions

View file

@ -53,7 +53,7 @@ OwnPtr<CommentBlock> CommentBlock::parse(LineIterator& lines)
StringBuilder builder;
while (true) {
// Invariant: At the beginning of the loop, `line` is valid and should be added the the builder.
// Invariant: At the beginning of the loop, `line` is valid and should be added to the builder.
bool ends_here = line.ends_with(comment_end);
if (ends_here)
line = line.substring_view(0, line.length() - comment_end.length());