From 697453dfc278d951359f2f2d6208a67d30b120e1 Mon Sep 17 00:00:00 2001 From: Brian Tiger Chow Date: Fri, 5 Dec 2014 20:51:40 -0800 Subject: [PATCH] fix(cmd/bootstrap) s/remove/rm @jbenet License: MIT Signed-off-by: Brian Tiger Chow --- core/commands/bootstrap.go | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/core/commands/bootstrap.go b/core/commands/bootstrap.go index 9876615de..37ff44e9e 100644 --- a/core/commands/bootstrap.go +++ b/core/commands/bootstrap.go @@ -25,7 +25,7 @@ var BootstrapCmd = &cmds.Command{ Synopsis: ` ipfs bootstrap list - Show peers in the bootstrap list ipfs bootstrap add ... - Add peers to the bootstrap list -ipfs bootstrap remove ... - Removes peers from the bootstrap list +ipfs bootstrap rm ... - Removes peers from the bootstrap list `, ShortDescription: ` Running 'ipfs bootstrap' with no arguments will run 'ipfs bootstrap list'. @@ -37,9 +37,9 @@ Running 'ipfs bootstrap' with no arguments will run 'ipfs bootstrap list'. Type: bootstrapListCmd.Type, Subcommands: map[string]*cmds.Command{ - "list": bootstrapListCmd, - "add": bootstrapAddCmd, - "remove": bootstrapRemoveCmd, + "list": bootstrapListCmd, + "add": bootstrapAddCmd, + "rm": bootstrapRemoveCmd, }, }