From 88bccc983635192b7679892ccd2ffc69fc7a9a2b Mon Sep 17 00:00:00 2001 From: Amin Bashiri Date: Sat, 14 Jan 2023 15:54:15 -0700 Subject: [PATCH] Fix typos in selfsigned.go [skip ci] --- cert/selfsigned.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cert/selfsigned.go b/cert/selfsigned.go index b8e01521d..24b651c32 100644 --- a/cert/selfsigned.go +++ b/cert/selfsigned.go @@ -24,7 +24,7 @@ var ( serialNumberLimit = new(big.Int).Lsh(big.NewInt(1), 128) ) -// ipAddresses returns the parserd IP addresses to use when creating the TLS +// ipAddresses returns the parsed IP addresses to use when creating the TLS // certificate. If tlsDisableAutofill is true, we don't include interface // addresses to protect users privacy. func ipAddresses(tlsExtraIPs []string, tlsDisableAutofill bool) ([]net.IP, @@ -72,7 +72,7 @@ func ipAddresses(tlsExtraIPs []string, tlsDisableAutofill bool) ([]net.IP, } // dnsNames returns the host and DNS names to use when creating the TLS -// ceftificate. +// certificate. func dnsNames(tlsExtraDomains []string, tlsDisableAutofill bool) (string, []string) {