From b1b4ac4a0bbc9e58ea7a6bb92f33c0beb070609d Mon Sep 17 00:00:00 2001 From: Richard Littauer Date: Wed, 17 Feb 2016 13:12:28 -0500 Subject: [PATCH] Capped IPFS, added period License: MIT Signed-off-by: Richard Littauer --- core/commands/tar.go | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/core/commands/tar.go b/core/commands/tar.go index ada15ec21..dfd0d36ff 100644 --- a/core/commands/tar.go +++ b/core/commands/tar.go @@ -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{ @@ -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()