diff options
author | Nico Weber <thakis@chromium.org> | 2022-11-03 13:27:18 -0400 |
---|---|---|
committer | Linus Groh <mail@linusgroh.de> | 2022-11-03 17:38:32 +0000 |
commit | daeaefad17135f49f1dd81e37fdf5656c605ef45 (patch) | |
tree | f7dcfb7fa9ea869d49282acd1c586312c0398bf6 /Userland/Libraries/LibTLS | |
parent | b820b9b2ffece9270619fc69102f3438b2ebb1fe (diff) | |
download | serenity-daeaefad17135f49f1dd81e37fdf5656c605ef45.zip |
Everywhere: Clean up "the the" comment typos
Diffstat (limited to 'Userland/Libraries/LibTLS')
-rw-r--r-- | Userland/Libraries/LibTLS/Certificate.cpp | 2 |
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"); |