From e65ff9093300d16ee5cc18b4c689b62ce6f00aea Mon Sep 17 00:00:00 2001 From: Kir Kolyshkin Date: Wed, 25 Sep 2024 22:10:57 -0700 Subject: [PATCH] capability: fix a typo in ListSupported doc Signed-off-by: Kir Kolyshkin --- capability/enum.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/capability/enum.go b/capability/enum.go index f89f027..f885933 100644 --- a/capability/enum.go +++ b/capability/enum.go @@ -316,7 +316,7 @@ func ListKnown() []Cap { return list() } -// ListSupported retuns the list of all capabilities known to the package, +// ListSupported returns the list of all capabilities known to the package, // except those that are not supported by the currently running Linux kernel. func ListSupported() ([]Cap, error) { last, err := LastCap()