From f2acc607f8a6f2837ed302cedd70676d8ea1f463 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 a2d3d80964..402bac95e8 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 d7cf7ea758..b31f9cdb24 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 ( -- 2.48.1