From 53eea843bc3dac8f5f5472f176fc48f75315d2dc Mon Sep 17 00:00:00 2001 From: Mariano Cano Date: Fri, 31 Jul 2020 11:03:47 -0700 Subject: [PATCH] Fix newExtension comment. --- x509util/extensions.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/x509util/extensions.go b/x509util/extensions.go index af4e4c42..d6f71a73 100644 --- a/x509util/extensions.go +++ b/x509util/extensions.go @@ -65,7 +65,7 @@ type Extension struct { Value []byte `json:"value"` } -// newExtensions creates an Extension from a standard pkix.Extension. +// newExtension creates an Extension from a standard pkix.Extension. func newExtension(e pkix.Extension) Extension { return Extension{ ID: ObjectIdentifier(e.Id),