From b63bdbc7d87b827ac78b0c300dcdb1c2127235ce Mon Sep 17 00:00:00 2001 From: maradini77 <140460067+maradini77@users.noreply.github.com> Date: Wed, 24 Dec 2025 20:22:43 +0100 Subject: [PATCH 1/3] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index adc0f26653..d5b8697063 100644 --- a/README.md +++ b/README.md @@ -67,7 +67,7 @@ The Ethereum specification is maintained as a Python library, for better integra Requires Python 3.11+ -### Building Specification Doucumentation +### Building Specification Documentation Building the spec documentation is most easily done through [`tox`](https://tox.readthedocs.io/en/latest/): From 95f8d77ff59022d94947fb6f573827bd98ad8bc8 Mon Sep 17 00:00:00 2001 From: maradini77 <140460067+maradini77@users.noreply.github.com> Date: Wed, 24 Dec 2025 20:23:11 +0100 Subject: [PATCH 2/3] Update CONTRIBUTING.md --- CONTRIBUTING.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 6b96595bf6..66f9808075 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -9,9 +9,9 @@ In particular, we appreciate support in the following areas: - Improving the documentation. > [!IMPORTANT] -> Generally, we do not assign issues to external contributors. If you want to work on an issue, you are very welcome to go ahead and make a pull request. We would, hoever, be happy to answer questions you may have before you start implementing. +> Generally, we do not assign issues to external contributors. If you want to work on an issue, you are very welcome to go ahead and make a pull request. We would, however, be happy to answer questions you may have before you start implementing. -For details about EELS usage and building, please refer the [README](https://github.com/ethereum/execution-specs/blob/master/README.md#usage) +For details about EELS usage and building, please refer to the [README](https://github.com/ethereum/execution-specs/blob/master/README.md#usage) ## Contribution Guidelines From 61f55e6e5df6b90108e1d086af2b17e8adcbd162 Mon Sep 17 00:00:00 2001 From: maradini77 <140460067+maradini77@users.noreply.github.com> Date: Wed, 24 Dec 2025 20:24:20 +0100 Subject: [PATCH 3/3] Update blake2.py --- src/ethereum/crypto/blake2.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ethereum/crypto/blake2.py b/src/ethereum/crypto/blake2.py index 6292f87dbf..b50967749b 100644 --- a/src/ethereum/crypto/blake2.py +++ b/src/ethereum/crypto/blake2.py @@ -36,7 +36,7 @@ class Blake2: """ Implementation of the BLAKE2 cryptographic hashing algorithm. - Please refer the following document for details: + Please refer to the following document for details: https://datatracker.ietf.org/doc/html/rfc7693 """