From 218e6a9ccc67b94331649cfb8bcef984ac23f75a Mon Sep 17 00:00:00 2001 From: Feng Ruohang Date: Thu, 6 Aug 2026 12:38:59 +0800 Subject: [PATCH] fix: repair a link and help text damaged by the brand sweep The example-alias sweep replaced the bare word 'play', which also hit the Go playground link in a pathMatch comment, leaving a dead mysilo.golang.org URL. The proxy-set description referred to the sibling command with template placeholder syntax that reads as noise; it now spells the command out. Co-Authored-By: Claude Fable 5 Signed-off-by: Feng Ruohang --- cmd/find.go | 2 +- cmd/support-proxy-set.go | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/cmd/find.go b/cmd/find.go index ecdae98024..8d0ca7f1b8 100644 --- a/cmd/find.go +++ b/cmd/find.go @@ -108,7 +108,7 @@ func patternMatch(pattern, match string) bool { // supports '*' and '?' wildcards in the pattern string. // unlike path.Match(), considers a path as a flat name space // while matching the pattern. The difference is illustrated in -// the example here https://mysilo.golang.org/p/Ega9qgD4Qz . +// the example here https://play.golang.org/p/Ega9qgD4Qz . func pathMatch(pattern, path string) bool { return wildcard.Match(pattern, path) } diff --git a/cmd/support-proxy-set.go b/cmd/support-proxy-set.go index 5e12e32ddf..2977b7ea52 100644 --- a/cmd/support-proxy-set.go +++ b/cmd/support-proxy-set.go @@ -61,8 +61,8 @@ FLAGS: DESCRIPTION: This setting configures the outbound path a server uses to reach MinIO SUBNET. Since this Silo build disables SUBNET entirely, the command is - retained for CLI compatibility and always exits with an error. Use - '{{.HelpName}} ..' -> 'remove' to clear an existing proxy setting. + retained for CLI compatibility and always exits with an error. Run + 'mc support proxy remove ALIAS' to clear an existing proxy setting. EXIT STATUS: 1 - SUBNET services are disabled