@cryptotaxi247 / kubo / commits / bde3a4294

chore: fix --help text

https://github.com/ipfs/kubo/pull/10412 changed to be partial match but we forgot to update --help text

Marcin Rataj committed May 14, 2024 at 16:20 UTC bde3a42940fde958671e9067e5ee2c88ffe96afd
1 file changed +1 -1
core/commands/pin/pin.go
+1 -1
@@ -362,7 +362,7 @@ Example:
362 cmds.BoolOption(pinQuietOptionName, "q", "Write just hashes of objects."),
363 cmds.BoolOption(pinStreamOptionName, "s", "Enable streaming of pins as they are discovered."),
364 cmds.BoolOption(pinNamesOptionName, "n", "Enable displaying pin names (slower)."),
365 - cmds.StringOption(pinNameOptionName, "Display pins with names that contain the value provided (case-sensitive, exact match)."),
365 + cmds.StringOption(pinNameOptionName, "Display pins with names that contain the value provided (case-sensitive, partial match)."),
366 },
367 Run: func(req *cmds.Request, res cmds.ResponseEmitter, env cmds.Environment) error {
368 api, err := cmdenv.GetApi(env, req)