From ef2a7698d7f3ad6e1a3bdcbbaa591f260ea2cf73 Mon Sep 17 00:00:00 2001 From: Andrew Ayer Date: Fri, 3 Feb 2023 14:32:44 -0500 Subject: [PATCH] Update a TODO comment --- monitor/discoveredcert.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/monitor/discoveredcert.go b/monitor/discoveredcert.go index cdcfdd1..532ef96 100644 --- a/monitor/discoveredcert.go +++ b/monitor/discoveredcert.go @@ -146,7 +146,7 @@ func (cert *discoveredCert) Environ() []string { } func (cert *discoveredCert) Text() string { - // TODO-3: improve the output: include WatchItem, indicate hash algorithm. look at sslmate email for inspiration + // TODO-4: improve the output: include WatchItem, indicate hash algorithm used for fingerprints, ... (look at SSLMate email for inspiration) text := new(strings.Builder) writeField := func(name string, value any) { fmt.Fprintf(text, "\t%13s = %s\n", name, value) }