summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibTLS
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/LibTLS
parentb820b9b2ffece9270619fc69102f3438b2ebb1fe (diff)
downloadserenity-daeaefad17135f49f1dd81e37fdf5656c605ef45.zip
Everywhere: Clean up "the the" comment typos
Diffstat (limited to 'Userland/Libraries/LibTLS')
-rw-r--r--Userland/Libraries/LibTLS/Certificate.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/Userland/Libraries/LibTLS/Certificate.cpp b/Userland/Libraries/LibTLS/Certificate.cpp
index 825230e45e..b5cce14b86 100644
--- a/Userland/Libraries/LibTLS/Certificate.cpp
+++ b/Userland/Libraries/LibTLS/Certificate.cpp
@@ -192,7 +192,7 @@ Optional<Certificate> Certificate::parse_asn1(ReadonlyBytes buffer, bool)
// AttributeType ::= ObjectIdentifier
// AttributeValue ::= Any
while (!decoder.eof()) {
- // Parse only the the required fields, and ignore the rest.
+ // Parse only the required fields, and ignore the rest.
ENTER_SCOPE_OR_FAIL(Set, "Certificate::TBSCertificate::issuer/subject::$::RelativeDistinguishedName");
while (!decoder.eof()) {
ENTER_SCOPE_OR_FAIL(Sequence, "Certificate::TBSCertificate::issuer/subject::$::RelativeDistinguishedName::$::AttributeTypeAndValue");