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, }, }