Skip to content

Commit e609843

Browse files
vtjl10lightclient
andauthored
all: fix typos in docs and comments (#31548)
Co-authored-by: lightclient <[email protected]>
1 parent 82f01f9 commit e609843

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

cmd/clef/rules.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
The `signer` binary contains a ruleset engine, implemented with [OttoVM](https://github.com/robertkrimen/otto)
44

5-
It enables usecases like the following:
5+
It enables use cases like the following:
66

77
* I want to auto-approve transactions with contract `CasinoDapp`, with up to `0.05 ether` in value to maximum `1 ether` per 24h period
88
* I want to auto-approve transaction to contract `EthAlarmClock` with `data`=`0xdeadbeef`, if `value=0`, `gas < 44k` and `gasPrice < 40Gwei`

cmd/evm/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ which can
1616
1. Take a prestate, including
1717
- Accounts,
1818
- Block context information,
19-
- Previous blockshashes (*optional)
19+
- Previous block hashes (*optional)
2020
2. Apply a set of transactions,
2121
3. Apply a mining-reward (*optional),
2222
4. And generate a post-state, including

cmd/evm/eest.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ import "regexp"
2222
// within its filename by the execution spec test (EEST).
2323
type testMetadata struct {
2424
fork string
25-
module string // which python module gnerated the test, e.g. eip7702
25+
module string // which python module generated the test, e.g. eip7702
2626
file string // exact file the test came from, e.g. test_gas.py
2727
function string // func that created the test, e.g. test_valid_mcopy_operations
2828
parameters string // the name of the parameters which were used to fill the test, e.g. zero_inputs

eth/downloader/skeleton.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -275,7 +275,7 @@ func (s *skeleton) startup() {
275275
for {
276276
// If the sync cycle terminated or was terminated, propagate up when
277277
// higher layers request termination. There's no fancy explicit error
278-
// signalling as the sync loop should never terminate (TM).
278+
// signaling as the sync loop should never terminate (TM).
279279
newhead, err := s.sync(head)
280280
switch {
281281
case err == errSyncLinked:

internal/guide/guide_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
// along with the go-ethereum library. If not, see <http://www.gnu.org/licenses/>.
1616

1717
// This file contains the code snippets from the developer's guide embedded into
18-
// Go tests. This ensures that any code published in out guides will not break
18+
// Go tests. This ensures that any code published in our guides will not break
1919
// accidentally via some code update. If some API changes nonetheless that needs
2020
// modifying this file, please port any modification over into the developer's
2121
// guide wiki pages too!

0 commit comments

Comments
 (0)