@cryptotaxi247 / kubo / commits / b1b4ac4a0

Capped IPFS, added period

License: MIT Signed-off-by: Richard Littauer <richard.littauer@gmail.com>

Richard Littauer committed Feb 17, 2016 at 13:12 UTC b1b4ac4a0bbc9e58ea7a6bb92f33c0beb070609d
1 file changed +4 -4
core/commands/tar.go
+4 -4
@@ -13,7 +13,7 @@ import (
13
14 var TarCmd = &cmds.Command{
15 Helptext: cmds.HelpText{
16 - Tagline: "Utility functions for tar files in ipfs.",
16 + Tagline: "Utility functions for tar files in IPFS.",
17 },
18
19 Subcommands: map[string]*cmds.Command{
@@ -75,14 +75,14 @@ var tarAddCmd = &cmds.Command{
75
76 var tarCatCmd = &cmds.Command{
77 Helptext: cmds.HelpText{
78 - Tagline: "Export a tar file from ipfs.",
78 + Tagline: "Export a tar file from IPFS.",
79 ShortDescription: `
80 -'ipfs tar cat' will export a tar file from a previously imported one in ipfs
80 +'ipfs tar cat' will export a tar file from a previously imported one in IPFS.
81 `,
82 },
83
84 Arguments: []cmds.Argument{
85 - cmds.StringArg("path", true, false, "Ipfs path of archive to export.").EnableStdin(),
85 + cmds.StringArg("path", true, false, "IPFS path of archive to export.").EnableStdin(),
86 },
87 Run: func(req cmds.Request, res cmds.Response) {
88 nd, err := req.InvocContext().GetNode()