Skip to content

Commit

Permalink
Merge pull request #2351 from ipfs/docs/tar
Browse files Browse the repository at this point in the history
Capped IPFS, added period
  • Loading branch information
whyrusleeping committed Feb 17, 2016
2 parents e19dbba + b1b4ac4 commit f7126bb
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions core/commands/tar.go
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ import (

var TarCmd = &cmds.Command{
Helptext: cmds.HelpText{
Tagline: "Utility functions for tar files in ipfs.",
Tagline: "Utility functions for tar files in IPFS.",
},

Subcommands: map[string]*cmds.Command{
Expand Down Expand Up @@ -75,14 +75,14 @@ var tarAddCmd = &cmds.Command{

var tarCatCmd = &cmds.Command{
Helptext: cmds.HelpText{
Tagline: "Export a tar file from ipfs.",
Tagline: "Export a tar file from IPFS.",
ShortDescription: `
'ipfs tar cat' will export a tar file from a previously imported one in ipfs
'ipfs tar cat' will export a tar file from a previously imported one in IPFS.
`,
},

Arguments: []cmds.Argument{
cmds.StringArg("path", true, false, "Ipfs path of archive to export.").EnableStdin(),
cmds.StringArg("path", true, false, "IPFS path of archive to export.").EnableStdin(),
},
Run: func(req cmds.Request, res cmds.Response) {
nd, err := req.InvocContext().GetNode()
Expand Down

0 comments on commit f7126bb

Please sign in to comment.