Skip to content

Commit

Permalink
Fix a few typos (#4055)
Browse files Browse the repository at this point in the history
  • Loading branch information
dapplion authored Dec 17, 2024
1 parent 001caab commit 6c581ca
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion specs/_features/whisk/beacon-chain.md
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ This document details the beacon chain additions and changes of to support the W
| `WHISK_PROPOSER_TRACKERS_COUNT` | `uint64(2**13)` (= 8,192) | number of proposer trackers |
| `WHISK_VALIDATORS_PER_SHUFFLE` | `uint64(2**7 - 4)` (= 124) | number of validators shuffled per shuffle step |
| `WHISK_MAX_SHUFFLE_PROOF_SIZE` | `uint64(2**15)` | max size of a shuffle proof |
| `WHISK_MAX_OPENING_PROOF_SIZE` | `uint64(2**10)` | max size of a opening proof |
| `WHISK_MAX_OPENING_PROOF_SIZE` | `uint64(2**10)` | max size of an opening proof |

## Configuration

Expand Down
2 changes: 1 addition & 1 deletion tests/core/pyspec/eth2spec/gen_helpers/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ Options:

## `gen_from_tests`

This is an util to derive tests from a tests source file.
This is a util to derive tests from a tests source file.

This requires the tests to yield test-case-part outputs. These outputs are then written to the test case directory.
Yielding data is illegal in normal pytests, so it is only done when in "generator mode".
Expand Down
4 changes: 2 additions & 2 deletions tests/formats/fork_choice/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -156,10 +156,10 @@ value that Execution Layer client mock returns in responses to the following Eng
The checks to verify the current status of `store`.

```yaml
checks: {<store_attibute>: value} -- the assertions.
checks: {<store_attribute>: value} -- the assertions.
```
`<store_attibute>` is the field member or property of [`Store`](../../../specs/phase0/fork-choice.md#store) object that maintained by client implementation. The fields include:
`<store_attribute>` is the field member or property of [`Store`](../../../specs/phase0/fork-choice.md#store) object that maintained by client implementation. The fields include:

```yaml
head: {
Expand Down
6 changes: 3 additions & 3 deletions tests/formats/light_client/sync.md
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ should be executed with the specified parameters:
```yaml
{
current_slot: int -- integer, decimal
checks: {<store_attibute>: value} -- the assertions.
checks: {<store_attribute>: value} -- the assertions.
}
```

Expand All @@ -64,7 +64,7 @@ The function `process_light_client_update(store, update, current_slot, genesis_v
update: string -- name of the `*.ssz_snappy` file to load
as a `LightClientUpdate` object
current_slot: int -- integer, decimal
checks: {<store_attibute>: value} -- the assertions.
checks: {<store_attribute>: value} -- the assertions.
}
```

Expand All @@ -79,7 +79,7 @@ The `store` should be upgraded to reflect the new `store_fork_digest`:
```yaml
{
store_fork_digest: string -- Encoded `ForkDigest`-context of `store`
checks: {<store_attibute>: value} -- the assertions.
checks: {<store_attribute>: value} -- the assertions.
}
```

Expand Down

0 comments on commit 6c581ca

Please sign in to comment.