From 72c22667b829cbd29f4c179697836fe48b7eb347 Mon Sep 17 00:00:00 2001 From: Alex Chan Date: Fri, 3 Jul 2026 08:21:14 +0100 Subject: [PATCH] util/winutil: fix a typo where we repeat we repeat ourselves Found with the regex `\b([A-Za-z]+ [A-Za-z]+) \1\b`. Updates #cleanup Change-Id: If52c32e700cb2f9f97f2e1c812d48d788a758c51 Signed-off-by: Alex Chan --- util/winutil/winutil_windows.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/util/winutil/winutil_windows.go b/util/winutil/winutil_windows.go index d95d8b263..671a2a1bc 100644 --- a/util/winutil/winutil_windows.go +++ b/util/winutil/winutil_windows.go @@ -163,7 +163,7 @@ func getRegStringsInternal(subKey, name string) ([]string, error) { return val, nil } -// SetRegStrings sets a MULTI_SZ value in the in the local machine path +// SetRegStrings sets a MULTI_SZ value in the local machine path // to the strings specified by values. func SetRegStrings(name string, values []string) error { return setRegStringsInternal(regBase, name, values)