summaryrefslogtreecommitdiff
path: root/Libraries/LibCrypto
diff options
context:
space:
mode:
authorAnotherTest <ali.mpfard@gmail.com>2020-08-02 05:24:10 +0430
committerAndreas Kling <kling@serenityos.org>2020-08-02 18:57:51 +0200
commite54a5b7fb88f6f8a87674bb3bb95099872ba2676 (patch)
tree4b38e7f7b06e1190ddf15fac49ba337cfa00d616 /Libraries/LibCrypto
parent3f2b78a06396403ff70b08f9a5b853ab010d8743 (diff)
downloadserenity-e54a5b7fb88f6f8a87674bb3bb95099872ba2676.zip
LibCrypto: Format the comments in ASN1/PEM.h correctly
Diffstat (limited to 'Libraries/LibCrypto')
-rw-r--r--Libraries/LibCrypto/ASN1/PEM.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/Libraries/LibCrypto/ASN1/PEM.h b/Libraries/LibCrypto/ASN1/PEM.h
index 24afb7c128..b304d621f6 100644
--- a/Libraries/LibCrypto/ASN1/PEM.h
+++ b/Libraries/LibCrypto/ASN1/PEM.h
@@ -46,7 +46,7 @@ static ByteBuffer decode_pem(ReadonlyBytes data_in, size_t cert_index = 0)
continue;
if (data_in[i] != '-') {
- // read entire line
+ // Read entire line.
while ((i < input_length) && (data_in[i] != '\n'))
i++;
continue;
@@ -54,7 +54,7 @@ static ByteBuffer decode_pem(ReadonlyBytes data_in, size_t cert_index = 0)
if (data_in[i] == '-') {
auto end_idx = i;
- //read until end of line
+ // Read until end of line.
while ((i < input_length) && (data_in[i] != '\n'))
i++;
if (start_at) {