aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPéter Szilágyi <peterke@gmail.com>2016-07-27 15:49:04 +0800
committerGitHub <noreply@github.com>2016-07-27 15:49:04 +0800
commit8ec6ccc54d1da7bbaa87bd0b489b1778ea729c90 (patch)
treeb62bac692857cb6eb18bf5c6d50429a9c4d5acd4
parenta724952f7530d6709abada4d4da727409f703eb3 (diff)
parent1ca9e552d922f5c6e39bcab02b6419875f46241d (diff)
downloadgo-tangerine-8ec6ccc54d1da7bbaa87bd0b489b1778ea729c90.tar
go-tangerine-8ec6ccc54d1da7bbaa87bd0b489b1778ea729c90.tar.gz
go-tangerine-8ec6ccc54d1da7bbaa87bd0b489b1778ea729c90.tar.bz2
go-tangerine-8ec6ccc54d1da7bbaa87bd0b489b1778ea729c90.tar.lz
go-tangerine-8ec6ccc54d1da7bbaa87bd0b489b1778ea729c90.tar.xz
go-tangerine-8ec6ccc54d1da7bbaa87bd0b489b1778ea729c90.tar.zst
go-tangerine-8ec6ccc54d1da7bbaa87bd0b489b1778ea729c90.zip
Merge pull request #2870 from lukeyeager/patch-1
Fix README typo
-rw-r--r--README.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/README.md b/README.md
index 60ce814ba..94474dce3 100644
--- a/README.md
+++ b/README.md
@@ -50,7 +50,7 @@ The go-ethereum project comes with several wrappers/executables found in the `cm
| `abigen` | Source code generator to convert Ethereum contract definitions into easy to use, compile-time type-safe Go packages. It operates on plain [Ethereum contract ABIs](https://github.com/ethereum/wiki/wiki/Ethereum-Contract-ABI) with expanded functionality if the contract bytecode is also available. However it also accepts Solidity source files, making development much more streamlined. Please see our [Native DApps](https://github.com/ethereum/go-ethereum/wiki/Native-DApps:-Go-bindings-to-Ethereum-contracts) wiki page for details. |
| `bootnode` | Stripped down version of our Ethereum client implementation that only takes part in the network node discovery protocol, but does not run any of the higher level application protocols. It can be used as a lightweight bootstrap node to aid in finding peers in private networks. |
| `disasm` | Bytecode disassembler to convert EVM (Ethereum Virtual Machine) bytecode into more user friendly assembly-like opcodes (e.g. `echo "6001" | disasm`). For details on the individual opcodes, please see pages 22-30 of the [Ethereum Yellow Paper](http://gavwood.com/paper.pdf). |
-| `evm` | Developer utility version of the EVM (Ethereum Virtual Machine) that is capable of running bytecode snippets within a configurable environment and execution mode. Its purpose is to allow insolated, fine graned debugging of EVM opcodes (e.g. `evm --code 60ff60ff --debug`). |
+| `evm` | Developer utility version of the EVM (Ethereum Virtual Machine) that is capable of running bytecode snippets within a configurable environment and execution mode. Its purpose is to allow insolated, fine-grained debugging of EVM opcodes (e.g. `evm --code 60ff60ff --debug`). |
| `gethrpctest` | Developer utility tool to support our [ethereum/rpc-test](https://github.com/ethereum/rpc-tests) test suite which validates baseline conformity to the [Ethereum JSON RPC](https://github.com/ethereum/wiki/wiki/JSON-RPC) specs. Please see the [test suite's readme](https://github.com/ethereum/rpc-tests/blob/master/README.md) for details. |
| `rlpdump` | Developer utility tool to convert binary RLP ([Recursive Length Prefix](https://github.com/ethereum/wiki/wiki/RLP)) dumps (data encoding used by the Ethereum protocol both network as well as consensus wise) to user friendlier hierarchical representation (e.g. `rlpdump --hex CE0183FFFFFFC4C304050583616263`). |