@cryptotaxi247 / kubo / commits / 6ea9f6014

Removed double spaces, added `an`, siwitched carrot to dollar

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

Richard Littauer committed Feb 18, 2016 at 15:51 UTC 6ea9f6014872b7a0a8182987ccb4b9b00d197542
1 file changed +9 -9
core/commands/resolve.go
+9 -9
@@ -19,36 +19,36 @@ var ResolveCmd = &cmds.Command{
19 Tagline: "Resolve the value of names to IPFS.",
20 ShortDescription: `
21 There are a number of mutable name protocols that can link among
22 -themselves and into IPNS. This command accepts any of these
22 +themselves and into IPNS. This command accepts any of these
23 identifiers and resolves them to the referenced item.
24 `,
25 LongDescription: `
26 There are a number of mutable name protocols that can link among
27 -themselves and into IPNS. For example IPNS references can (currently)
28 -point at IPFS object, and DNS links can point at other DNS links, IPNS
29 -entries, or IPFS objects. This command accepts any of these
27 +themselves and into IPNS. For example IPNS references can (currently)
28 +point at an IPFS object, and DNS links can point at other DNS links, IPNS
29 +entries, or IPFS objects. This command accepts any of these
30 identifiers and resolves them to the referenced item.
31
32 -Examples:
32 +EXAMPLES
33
34 Resolve the value of your identity:
35
36 - > ipfs resolve /ipns/QmatmE9msSfkKxoffpHwNLNKgwZG8eT9Bud6YoPab52vpy
36 + $ ipfs resolve /ipns/QmatmE9msSfkKxoffpHwNLNKgwZG8eT9Bud6YoPab52vpy
37 /ipfs/Qmcqtw8FfrVSBaRmbWwHxt3AuySBhJLcvmFYi3Lbc4xnwj
38
39 Resolve the value of another name:
40
41 - > ipfs resolve /ipns/QmbCMUZw6JFeZ7Wp9jkzbye3Fzp2GGcPgC3nmeUjfVF87n
41 + $ ipfs resolve /ipns/QmbCMUZw6JFeZ7Wp9jkzbye3Fzp2GGcPgC3nmeUjfVF87n
42 /ipns/QmatmE9msSfkKxoffpHwNLNKgwZG8eT9Bud6YoPab52vpy
43
44 Resolve the value of another name recursively:
45
46 - > ipfs resolve -r /ipns/QmbCMUZw6JFeZ7Wp9jkzbye3Fzp2GGcPgC3nmeUjfVF87n
46 + $ ipfs resolve -r /ipns/QmbCMUZw6JFeZ7Wp9jkzbye3Fzp2GGcPgC3nmeUjfVF87n
47 /ipfs/Qmcqtw8FfrVSBaRmbWwHxt3AuySBhJLcvmFYi3Lbc4xnwj
48
49 Resolve the value of an IPFS DAG path:
50
51 - > ipfs resolve /ipfs/QmeZy1fGbwgVSrqbfh9fKQrAWgeyRnj7h8fsHS1oy3k99x/beep/boop
51 + $ ipfs resolve /ipfs/QmeZy1fGbwgVSrqbfh9fKQrAWgeyRnj7h8fsHS1oy3k99x/beep/boop
52 /ipfs/QmYRMjyvAiHKN9UTi8Bzt1HUspmSRD8T8DwxfSMzLgBon1
53
54 `,