@cryptotaxi247 / kubo / commits / d8b77eb7c

s/retreiving/retrieving/g

License: MIT Signed-off-by: rht <rhtbot@gmail.com>

rht committed Jan 27, 2016 at 14:41 UTC d8b77eb7c7d7cacfcba75d1c767ef4d55b3ae5a5
2 files changed +7 -7
core/commands/block.go
+2 -2
@@ -45,7 +45,7 @@ var blockStatCmd = &cmds.Command{
45 Helptext: cmds.HelpText{
46 Tagline: "Print information of a raw IPFS block.",
47 ShortDescription: `
48 -'ipfs block stat' is a plumbing command for retreiving information
48 +'ipfs block stat' is a plumbing command for retrieving information
49 on raw ipfs blocks. It outputs the following to stdout:
50
51 Key - the base58 encoded multihash
@@ -82,7 +82,7 @@ var blockGetCmd = &cmds.Command{
82 Helptext: cmds.HelpText{
83 Tagline: "Get a raw IPFS block.",
84 ShortDescription: `
85 -'ipfs block get' is a plumbing command for retreiving raw ipfs blocks.
85 +'ipfs block get' is a plumbing command for retrieving raw ipfs blocks.
86 It outputs to stdout, and <key> is a base58 encoded multihash.
87 `,
88 },
core/commands/object/object.go
+5 -5
@@ -72,12 +72,12 @@ var ObjectDataCmd = &cmds.Command{
72 Helptext: cmds.HelpText{
73 Tagline: "Outputs the raw bytes in an IPFS object.",
74 ShortDescription: `
75 -'ipfs object data' is a plumbing command for retreiving the raw bytes stored in
75 +'ipfs object data' is a plumbing command for retrieving the raw bytes stored in
76 a DAG node. It outputs to stdout, and <key> is a base58 encoded
77 multihash.
78 `,
79 LongDescription: `
80 -'ipfs object data' is a plumbing command for retreiving the raw bytes stored in
80 +'ipfs object data' is a plumbing command for retrieving the raw bytes stored in
81 a DAG node. It outputs to stdout, and <key> is a base58 encoded
82 multihash.
83
@@ -110,7 +110,7 @@ var ObjectLinksCmd = &cmds.Command{
110 Helptext: cmds.HelpText{
111 Tagline: "Outputs the links pointed to by the specified object.",
112 ShortDescription: `
113 -'ipfs object links' is a plumbing command for retreiving the links from
113 +'ipfs object links' is a plumbing command for retrieving the links from
114 a DAG node. It outputs to stdout, and <key> is a base58 encoded
115 multihash.
116 `,
@@ -159,12 +159,12 @@ var ObjectGetCmd = &cmds.Command{
159 Helptext: cmds.HelpText{
160 Tagline: "Get and serialize the DAG node named by <key>.",
161 ShortDescription: `
162 -'ipfs object get' is a plumbing command for retreiving DAG nodes.
162 +'ipfs object get' is a plumbing command for retrieving DAG nodes.
163 It serializes the DAG node to the format specified by the "--encoding"
164 flag. It outputs to stdout, and <key> is a base58 encoded multihash.
165 `,
166 LongDescription: `
167 -'ipfs object get' is a plumbing command for retreiving DAG nodes.
167 +'ipfs object get' is a plumbing command for retrieving DAG nodes.
168 It serializes the DAG node to the format specified by the "--encoding"
169 flag. It outputs to stdout, and <key> is a base58 encoded multihash.
170