From 2009e6c596551673ebb12050daa30171171cb432 Mon Sep 17 00:00:00 2001 From: xieyuschen Date: Tue, 9 Sep 2025 23:08:11 +0800 Subject: [PATCH] internal/runtime/maps: remove redundant package docs This CL removes redundant package docs comments under different files as all of them will be shown in pkgsite. As of now, package docs 'Package maps implements Go's builtin map type' appears 3 times in pkgsite. See: https://pkg.go.dev/internal/runtime/maps Change-Id: I2f0696dd4f860afea5cc346532bca59135bec798 Reviewed-on: https://go-review.googlesource.com/c/go/+/702135 Reviewed-by: Michael Pratt LUCI-TryBot-Result: Go LUCI Reviewed-by: Mark Freeman --- src/internal/runtime/maps/fuzz_test.go | 1 - src/internal/runtime/maps/table.go | 1 - src/internal/runtime/maps/table_debug.go | 1 - 3 files changed, 3 deletions(-) diff --git a/src/internal/runtime/maps/fuzz_test.go b/src/internal/runtime/maps/fuzz_test.go index f3f33773db..07a7d0380a 100644 --- a/src/internal/runtime/maps/fuzz_test.go +++ b/src/internal/runtime/maps/fuzz_test.go @@ -2,7 +2,6 @@ // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. -// Package maps implements Go's builtin map type. package maps_test import ( diff --git a/src/internal/runtime/maps/table.go b/src/internal/runtime/maps/table.go index 0535be0fc1..73ea76766b 100644 --- a/src/internal/runtime/maps/table.go +++ b/src/internal/runtime/maps/table.go @@ -2,7 +2,6 @@ // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. -// Package maps implements Go's builtin map type. package maps import ( diff --git a/src/internal/runtime/maps/table_debug.go b/src/internal/runtime/maps/table_debug.go index d7226251b0..d680a4b222 100644 --- a/src/internal/runtime/maps/table_debug.go +++ b/src/internal/runtime/maps/table_debug.go @@ -2,7 +2,6 @@ // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. -// Package maps implements Go's builtin map type. package maps import ( -- 2.52.0