From 7d8770e121802c7c5102974e10169c6cea19af10 Mon Sep 17 00:00:00 2001 From: Richard Littauer Date: Fri, 26 Feb 2016 11:55:35 -0500 Subject: [PATCH] Noted ability to specify multiple keys in `bitswap unwant` --- core/commands/bitswap.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/commands/bitswap.go b/core/commands/bitswap.go index 3e49c0879eb4..2b4cc746e4f8 100644 --- a/core/commands/bitswap.go +++ b/core/commands/bitswap.go @@ -31,7 +31,7 @@ var unwantCmd = &cmds.Command{ Tagline: "Remove a given block from your wantlist.", }, Arguments: []cmds.Argument{ - cmds.StringArg("key", true, true, "Key to remove from your wantlist.").EnableStdin(), + cmds.StringArg("key", true, true, "Key(s) to remove from your wantlist.").EnableStdin(), }, Run: func(req cmds.Request, res cmds.Response) { nd, err := req.InvocContext().GetNode()