diff options
author | Luke Shumaker <lukeshu@lukeshu.com> | 2023-03-16 18:38:11 -0400 |
---|---|---|
committer | Luke Shumaker <lukeshu@lukeshu.com> | 2023-03-17 02:51:41 -0400 |
commit | 2ee7091933d2c07338dfb4699ce5665951b47afd (patch) | |
tree | ae0dc5b84e68890c79d13e5694a38f1a59a64d07 /lib/maps | |
parent | 1d52c7513c5bca088fd8e44ff56d07c44e806967 (diff) |
tree-wide: Ensure that all packages have a doc comment
Diffstat (limited to 'lib/maps')
-rw-r--r-- | lib/maps/maputil.go | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/lib/maps/maputil.go b/lib/maps/maputil.go index aeebe12..d409e70 100644 --- a/lib/maps/maputil.go +++ b/lib/maps/maputil.go @@ -1,7 +1,9 @@ -// Copyright (C) 2022 Luke Shumaker <lukeshu@lukeshu.com> +// Copyright (C) 2022-2023 Luke Shumaker <lukeshu@lukeshu.com> // // SPDX-License-Identifier: GPL-2.0-or-later +// Package maps implements generic (type-parameterized) utilities for +// working with simple Go maps. package maps import ( |