From 1d035db4df78bcca717417ec45cecfaf4d12ee1d Mon Sep 17 00:00:00 2001 From: Joe Tsai Date: Thu, 13 Feb 2025 16:12:00 -0800 Subject: [PATCH] types/bools: fix doc typo (#15021) The Select function was renamed as IfElse. Updates #cleanup Signed-off-by: Joe Tsai --- types/bools/bools.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/types/bools/bools.go b/types/bools/bools.go index 7cef17cf0..e64068746 100644 --- a/types/bools/bools.go +++ b/types/bools/bools.go @@ -1,7 +1,7 @@ // Copyright (c) Tailscale Inc & AUTHORS // SPDX-License-Identifier: BSD-3-Clause -// Package bools contains the [Int], [Compare], and [Select] functions. +// Package bools contains the [Int], [Compare], and [IfElse] functions. package bools // Int returns 1 for true and 0 for false.