From a1d42295d8e18ec7f9b5dee0ed307009d8224ce3 Mon Sep 17 00:00:00 2001 From: Park Zhou Date: Sat, 8 Oct 2022 17:00:39 +0000 Subject: [PATCH] crypto/x509: add blank line before package declaration The package doc included the copying header by mistake. Change-Id: I37ac2d14b1b8a389e6b603fbb1c6a3a33b1d80d6 Reviewed-on: https://go-review.googlesource.com/c/go/+/440456 Reviewed-by: Ian Lance Taylor Auto-Submit: Ian Lance Taylor Run-TryBot: Ian Lance Taylor TryBot-Result: Gopher Robot Reviewed-by: Joedian Reid --- src/crypto/x509/parser.go | 1 + src/crypto/x509/parser_test.go | 1 + 2 files changed, 2 insertions(+) diff --git a/src/crypto/x509/parser.go b/src/crypto/x509/parser.go index a2d3d809642b22..402bac95e83936 100644 --- a/src/crypto/x509/parser.go +++ b/src/crypto/x509/parser.go @@ -1,6 +1,7 @@ // Copyright 2021 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. + package x509 import ( diff --git a/src/crypto/x509/parser_test.go b/src/crypto/x509/parser_test.go index d7cf7ea758a5e6..b31f9cdb248e08 100644 --- a/src/crypto/x509/parser_test.go +++ b/src/crypto/x509/parser_test.go @@ -1,6 +1,7 @@ // Copyright 2021 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. + package x509 import (