From bde3a42940fde958671e9067e5ee2c88ffe96afd Mon Sep 17 00:00:00 2001 From: Marcin Rataj Date: Tue, 14 May 2024 16:20:00 +0200 Subject: [PATCH] chore: fix --help text https://github.com/ipfs/kubo/pull/10412 changed to be partial match but we forgot to update --help text --- core/commands/pin/pin.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/commands/pin/pin.go b/core/commands/pin/pin.go index d5620bc7a..b27b1e2bf 100644 --- a/core/commands/pin/pin.go +++ b/core/commands/pin/pin.go @@ -362,7 +362,7 @@ Example: cmds.BoolOption(pinQuietOptionName, "q", "Write just hashes of objects."), cmds.BoolOption(pinStreamOptionName, "s", "Enable streaming of pins as they are discovered."), cmds.BoolOption(pinNamesOptionName, "n", "Enable displaying pin names (slower)."), - cmds.StringOption(pinNameOptionName, "Display pins with names that contain the value provided (case-sensitive, exact match)."), + cmds.StringOption(pinNameOptionName, "Display pins with names that contain the value provided (case-sensitive, partial match)."), }, Run: func(req *cmds.Request, res cmds.ResponseEmitter, env cmds.Environment) error { api, err := cmdenv.GetApi(env, req)