diff options
author | Felix Lange <fjl@twurst.com> | 2015-07-07 11:08:16 +0800 |
---|---|---|
committer | Felix Lange <fjl@twurst.com> | 2015-07-07 20:12:45 +0800 |
commit | bdae4fd573dbc163bab3d0e2d1a5c457892037cd (patch) | |
tree | 65e1cc5163924ea26c1813519ed99ef95cc31254 /cmd | |
parent | e813626ee1d5d7397c2a8e670ab8c372df921bbb (diff) | |
download | dexon-bdae4fd573dbc163bab3d0e2d1a5c457892037cd.tar.gz dexon-bdae4fd573dbc163bab3d0e2d1a5c457892037cd.tar.zst dexon-bdae4fd573dbc163bab3d0e2d1a5c457892037cd.zip |
all: add some godoc synopsis comments
Diffstat (limited to 'cmd')
-rw-r--r-- | cmd/bootnode/main.go | 2 | ||||
-rw-r--r-- | cmd/disasm/main.go | 1 | ||||
-rw-r--r-- | cmd/ethtest/main.go | 1 | ||||
-rw-r--r-- | cmd/evm/main.go | 1 | ||||
-rw-r--r-- | cmd/geth/main.go | 1 | ||||
-rw-r--r-- | cmd/utils/cmd.go | 1 |
6 files changed, 6 insertions, 1 deletions
diff --git a/cmd/bootnode/main.go b/cmd/bootnode/main.go index 6f0ae4bd5..397fa099c 100644 --- a/cmd/bootnode/main.go +++ b/cmd/bootnode/main.go @@ -14,7 +14,7 @@ // You should have received a copy of the GNU General Public License // along with go-ethereum. If not, see <http://www.gnu.org/licenses/>. -// Command bootnode runs a bootstrap node for the Discovery Protocol. +// bootnode runs a bootstrap node for the Ethereum Discovery Protocol. package main import ( diff --git a/cmd/disasm/main.go b/cmd/disasm/main.go index 93c85b8bb..4bcd8608a 100644 --- a/cmd/disasm/main.go +++ b/cmd/disasm/main.go @@ -14,6 +14,7 @@ // You should have received a copy of the GNU General Public License // along with go-ethereum. If not, see <http://www.gnu.org/licenses/>. +// disasm is a pretty-printer for EVM bytecode. package main import ( diff --git a/cmd/ethtest/main.go b/cmd/ethtest/main.go index b2acd84c7..61276b177 100644 --- a/cmd/ethtest/main.go +++ b/cmd/ethtest/main.go @@ -14,6 +14,7 @@ // You should have received a copy of the GNU General Public License // along with go-ethereum. If not, see <http://www.gnu.org/licenses/>. +// ethtest executes Ethereum JSON tests. package main import ( diff --git a/cmd/evm/main.go b/cmd/evm/main.go index 9c1bd4b72..6420c83be 100644 --- a/cmd/evm/main.go +++ b/cmd/evm/main.go @@ -14,6 +14,7 @@ // You should have received a copy of the GNU General Public License // along with go-ethereum. If not, see <http://www.gnu.org/licenses/>. +// evm executes EVM code snippets. package main import ( diff --git a/cmd/geth/main.go b/cmd/geth/main.go index 251121030..bb6ddc1e2 100644 --- a/cmd/geth/main.go +++ b/cmd/geth/main.go @@ -14,6 +14,7 @@ // You should have received a copy of the GNU General Public License // along with go-ethereum. If not, see <http://www.gnu.org/licenses/>. +// geth is the official command-line client for Ethereum. package main import ( diff --git a/cmd/utils/cmd.go b/cmd/utils/cmd.go index 9d95732c0..2949d2470 100644 --- a/cmd/utils/cmd.go +++ b/cmd/utils/cmd.go @@ -14,6 +14,7 @@ // You should have received a copy of the GNU General Public License // along with go-ethereum. If not, see <http://www.gnu.org/licenses/>. +// Package utils contains internal helper functions for go-ethereum commands. package utils import ( |