Alphabetized swarm subcmds
License: MIT Signed-off-by: Richard Littauer <richard.littauer@gmail.com>
Richard Littauer committed
Apr 19, 2016 at 12:17 UTC
ab4b2804302694387ceec59046489665d0e680c5
1 file changed
+2
-2
core/commands/swarm.go
+2
-2
@@ -29,11 +29,11 @@ var SwarmCmd = &cmds.Command{
29
Helptext: cmds.HelpText{
30
Tagline: "Swarm inspection tool.",
31
Synopsis: `
32
-ipfs swarm peers - List peers with open connections
32
ipfs swarm addrs - List known addresses. Useful to debug.
33
ipfs swarm connect <address> - Open connection to a given address
34
ipfs swarm disconnect <address> - Close connection to a given address
35
ipfs swarm filters - Manipulate filters addresses
36
+ipfs swarm peers - List peers with open connections
37
`,
38
ShortDescription: `
39
'ipfs swarm' is a tool to manipulate the network swarm. The swarm is the
@@ -42,11 +42,11 @@ ipfs peers in the internet.
42
`,
43
},
44
Subcommands: map[string]*cmds.Command{
45
- "peers": swarmPeersCmd,
45
"addrs": swarmAddrsCmd,
46
"connect": swarmConnectCmd,
47
"disconnect": swarmDisconnectCmd,
48
"filters": swarmFiltersCmd,
49
+ "peers": swarmPeersCmd,
50
},
51
}
52