diff --git a/.github/workflows/check.yml b/.github/workflows/check.yml index 708a0862..6ac80efd 100644 --- a/.github/workflows/check.yml +++ b/.github/workflows/check.yml @@ -110,4 +110,4 @@ jobs: - name: Checkout Actions Repository uses: actions/checkout@v4 - name: Check spelling of files in the workspace - uses: crate-ci/typos@v1.24.1 + uses: crate-ci/typos@v1.24.6 diff --git a/docs/modules/ROOT/pages/crypto.adoc b/docs/modules/ROOT/pages/crypto.adoc index 456f8518..7754486c 100644 --- a/docs/modules/ROOT/pages/crypto.adoc +++ b/docs/modules/ROOT/pages/crypto.adoc @@ -22,6 +22,6 @@ pub fn verify(&self, proof: Vec, root: B256, leaf: B256) -> bool { } ---- -Note that these functions use `keccak256` as the hashing algorithm, but our library also provides generic counterparts: https://docs.rs/crypto/latest/merkle/struct.Verifier.html#method.verify_with_builder[`verify_with_builer`] and https://docs.rs/crypto/latest/merkle/struct.Verifier.html#method.verify_multi_proof_with_builder[`verify_multi_proof_with_builder`]. +Note that these functions use `keccak256` as the hashing algorithm, but our library also provides generic counterparts: https://docs.rs/crypto/latest/merkle/struct.Verifier.html#method.verify_with_builder[`verify_with_builder`] and https://docs.rs/crypto/latest/merkle/struct.Verifier.html#method.verify_multi_proof_with_builder[`verify_multi_proof_with_builder`]. We also provide an adapter https://docs.rs/crypto/latest/hash/index.html[`hash`] module to use your own hashers in conjunction with them that resembles Rust's standard library's API.