From 628e177230e5af1f3205b87a91af28a7943bde0d Mon Sep 17 00:00:00 2001 From: Jonathan Wang <31040440+jonathanpwang@users.noreply.github.com> Date: Wed, 18 Oct 2023 17:12:41 -0700 Subject: [PATCH] fix: typo in comment: 32 bytes -> 32 bits --- hashes/zkevm/src/sha256/vanilla/constraints.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hashes/zkevm/src/sha256/vanilla/constraints.rs b/hashes/zkevm/src/sha256/vanilla/constraints.rs index 979b757a..f0ff78a1 100644 --- a/hashes/zkevm/src/sha256/vanilla/constraints.rs +++ b/hashes/zkevm/src/sha256/vanilla/constraints.rs @@ -331,7 +331,7 @@ impl Sha256CircuitConfig { cb.gate(1.expr()) }); - // Each round gets access to up to 32 bytes of input data. + // Each round gets access to up to 32 bits of input data. // We store that as a little-endian word. meta.create_gate("word_value", |meta| { let mut cb = BaseConstraintBuilder::new(MAX_DEGREE);