From eaab3f5271f8222ebdbee237f841801725ec1aa4 Mon Sep 17 00:00:00 2001 From: Nick Craig-Wood Date: Sun, 26 Oct 2025 10:24:15 +0000 Subject: [PATCH] docs: add the Provider to the options examples in the backend docs --- cmd/help.go | 3 +++ 1 file changed, 3 insertions(+) diff --git a/cmd/help.go b/cmd/help.go index a99f54ce9..20a09f0ad 100644 --- a/cmd/help.go +++ b/cmd/help.go @@ -347,6 +347,9 @@ func showBackend(name string) { for line := range strings.SplitSeq(ex.Help, "\n") { fmt.Printf(" - %s\n", line) } + if ex.Provider != "" { + fmt.Printf(" - Provider: %s\n", ex.Provider) + } } } fmt.Printf("\n")