diff options
author | Domino Valdano <jeff@okcupid.com> | 2018-02-26 17:38:17 +0800 |
---|---|---|
committer | Péter Szilágyi <peterke@gmail.com> | 2018-02-26 17:38:17 +0800 |
commit | d398d04e2779c5ebb9713929518f9305dd10af09 (patch) | |
tree | 6111647285c23322873e7945447f5782251c916f /cmd/geth/consolecmd.go | |
parent | 764878d988e7c6673f1edfeea5a47a02c2579d84 (diff) | |
download | dexon-d398d04e2779c5ebb9713929518f9305dd10af09.tar.gz dexon-d398d04e2779c5ebb9713929518f9305dd10af09.tar.zst dexon-d398d04e2779c5ebb9713929518f9305dd10af09.zip |
cmd/geth: fix broken links to JavaScript-Console wiki in cmd line help (#16183)
* Fixed broken link to JavaScript-Console wiki in cmd line help
* cmd/geth: Added missing r in 'JavaScript'
Diffstat (limited to 'cmd/geth/consolecmd.go')
-rw-r--r-- | cmd/geth/consolecmd.go | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/cmd/geth/consolecmd.go b/cmd/geth/consolecmd.go index 7eca4d59f..2500a969c 100644 --- a/cmd/geth/consolecmd.go +++ b/cmd/geth/consolecmd.go @@ -43,7 +43,7 @@ var ( Description: ` The Geth console is an interactive shell for the JavaScript runtime environment which exposes a node admin interface as well as the Ðapp JavaScript API. -See https://github.com/ethereum/go-ethereum/wiki/Javascipt-Console.`, +See https://github.com/ethereum/go-ethereum/wiki/JavaScript-Console.`, } attachCommand = cli.Command{ @@ -56,7 +56,7 @@ See https://github.com/ethereum/go-ethereum/wiki/Javascipt-Console.`, Description: ` The Geth console is an interactive shell for the JavaScript runtime environment which exposes a node admin interface as well as the Ðapp JavaScript API. -See https://github.com/ethereum/go-ethereum/wiki/Javascipt-Console. +See https://github.com/ethereum/go-ethereum/wiki/JavaScript-Console. This command allows to open a console on a running geth node.`, } @@ -69,7 +69,7 @@ This command allows to open a console on a running geth node.`, Category: "CONSOLE COMMANDS", Description: ` The JavaScript VM exposes a node admin interface as well as the Ðapp -JavaScript API. See https://github.com/ethereum/go-ethereum/wiki/Javascipt-Console`, +JavaScript API. See https://github.com/ethereum/go-ethereum/wiki/JavaScript-Console`, } ) |