@cryptotaxi247 / kubo / commits / 090953d29

docs: tweak ipfs cmd help

https://github.com/ipfs/go-ipfs/pull/8010#discussion_r600842235 https://github.com/ipfs/go-ipfs/pull/8010#discussion_r600842123

Marcin Rataj committed Mar 30, 2021 at 21:22 UTC 090953d2980d6a361cf14af8c0bd142cf0e2c3b5
2 files changed +4 -5
core/commands/add.go
+2 -2
@@ -53,10 +53,10 @@ var AddCmd = &cmds.Command{
53 Helptext: cmds.HelpText{
54 Tagline: "Add a file or directory to IPFS.",
55 ShortDescription: `
56 -Adds contents of <path> to IPFS. Use -r to add directories (recursively).
56 +Adds the content of <path> to IPFS. Use -r to add directories (recursively).
57 `,
58 LongDescription: `
59 -Adds contents of <path> to IPFS. Use -r to add directories.
59 +Adds the content of <path> to IPFS. Use -r to add directories.
60 Note that directories are added recursively, to form the IPFS
61 MerkleDAG.
62
core/commands/config.go
+2 -3
@@ -41,12 +41,11 @@ var ConfigCmd = &cmds.Command{
41 Tagline: "Get and set IPFS config values.",
42 ShortDescription: `
43 'ipfs config' controls configuration variables. It works like 'git config'.
44 -The configuration values are stored in a config file inside your IPFS_PATH
45 -repository.`,
44 +The configuration values are stored in a config file inside your IPFS_PATH.`,
45 LongDescription: `
46 'ipfs config' controls configuration variables. It works
47 much like 'git config'. The configuration values are stored in a config
49 -file inside your IPFS repository.
48 +file inside your IPFS repository (IPFS_PATH).
49
50 Examples:
51