summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibMarkdown
diff options
context:
space:
mode:
authorNico Weber <thakis@chromium.org>2022-11-03 13:27:18 -0400
committerLinus Groh <mail@linusgroh.de>2022-11-03 17:38:32 +0000
commitdaeaefad17135f49f1dd81e37fdf5656c605ef45 (patch)
treef7dcfb7fa9ea869d49282acd1c586312c0398bf6 /Userland/Libraries/LibMarkdown
parentb820b9b2ffece9270619fc69102f3438b2ebb1fe (diff)
downloadserenity-daeaefad17135f49f1dd81e37fdf5656c605ef45.zip
Everywhere: Clean up "the the" comment typos
Diffstat (limited to 'Userland/Libraries/LibMarkdown')
-rw-r--r--Userland/Libraries/LibMarkdown/CommentBlock.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/Userland/Libraries/LibMarkdown/CommentBlock.cpp b/Userland/Libraries/LibMarkdown/CommentBlock.cpp
index 49aeabd2c9..84f60cca2d 100644
--- a/Userland/Libraries/LibMarkdown/CommentBlock.cpp
+++ b/Userland/Libraries/LibMarkdown/CommentBlock.cpp
@@ -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());