aboutsummaryrefslogtreecommitdiffstats
path: root/README.md
diff options
context:
space:
mode:
authorLuke Yeager <lukeyeager@users.noreply.github.com>2016-07-27 08:21:06 +0800
committerLuke Yeager <luke.yeager@gmail.com>2016-07-27 08:23:20 +0800
commit1ca9e552d922f5c6e39bcab02b6419875f46241d (patch)
treeb62bac692857cb6eb18bf5c6d50429a9c4d5acd4 /README.md
parenta724952f7530d6709abada4d4da727409f703eb3 (diff)
downloadgo-tangerine-1ca9e552d922f5c6e39bcab02b6419875f46241d.tar
go-tangerine-1ca9e552d922f5c6e39bcab02b6419875f46241d.tar.gz
go-tangerine-1ca9e552d922f5c6e39bcab02b6419875f46241d.tar.bz2
go-tangerine-1ca9e552d922f5c6e39bcab02b6419875f46241d.tar.lz
go-tangerine-1ca9e552d922f5c6e39bcab02b6419875f46241d.tar.xz
go-tangerine-1ca9e552d922f5c6e39bcab02b6419875f46241d.tar.zst
go-tangerine-1ca9e552d922f5c6e39bcab02b6419875f46241d.zip
README: Fix typo
"fine graned" -> "fine-grained"
Diffstat (limited to 'README.md')
-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`). |