From e54a5b7fb88f6f8a87674bb3bb95099872ba2676 Mon Sep 17 00:00:00 2001 From: AnotherTest Date: Sun, 2 Aug 2020 05:24:10 +0430 Subject: [PATCH] LibCrypto: Format the comments in ASN1/PEM.h correctly --- Libraries/LibCrypto/ASN1/PEM.h | 4 ++-- 1 file 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) {