diff --git a/specs/_features/whisk/beacon-chain.md b/specs/_features/whisk/beacon-chain.md index de8051ffeb..3b527900e7 100644 --- a/specs/_features/whisk/beacon-chain.md +++ b/specs/_features/whisk/beacon-chain.md @@ -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 diff --git a/tests/core/pyspec/eth2spec/gen_helpers/README.md b/tests/core/pyspec/eth2spec/gen_helpers/README.md index 8fda6b585e..595b411f70 100644 --- a/tests/core/pyspec/eth2spec/gen_helpers/README.md +++ b/tests/core/pyspec/eth2spec/gen_helpers/README.md @@ -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". diff --git a/tests/formats/fork_choice/README.md b/tests/formats/fork_choice/README.md index 58709b3fee..37d09f4787 100644 --- a/tests/formats/fork_choice/README.md +++ b/tests/formats/fork_choice/README.md @@ -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: {: value} -- the assertions. +checks: {: value} -- the assertions. ``` -`` is the field member or property of [`Store`](../../../specs/phase0/fork-choice.md#store) object that maintained by client implementation. The fields include: +`` 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: { diff --git a/tests/formats/light_client/sync.md b/tests/formats/light_client/sync.md index 1706b4c162..d4c8d3ae99 100644 --- a/tests/formats/light_client/sync.md +++ b/tests/formats/light_client/sync.md @@ -48,7 +48,7 @@ should be executed with the specified parameters: ```yaml { current_slot: int -- integer, decimal - checks: {: value} -- the assertions. + checks: {: value} -- the assertions. } ``` @@ -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: {: value} -- the assertions. + checks: {: value} -- the assertions. } ``` @@ -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: {: value} -- the assertions. + checks: {: value} -- the assertions. } ```